Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.06 KB

ApiAuthSendPostRequest.md

File metadata and controls

29 lines (21 loc) · 1.06 KB

ApiAuthSendPostRequest

Properties

Name Type Description Notes
email str User's email address
ttl int Token's time to live in days [default to 1]

Example

from woj.models.api_auth_send_post_request import ApiAuthSendPostRequest

# TODO update the JSON string below
json = "{}"
# create an instance of ApiAuthSendPostRequest from a JSON string
api_auth_send_post_request_instance = ApiAuthSendPostRequest.from_json(json)
# print the JSON string representation of the object
print ApiAuthSendPostRequest.to_json()

# convert the object into a dict
api_auth_send_post_request_dict = api_auth_send_post_request_instance.to_dict()
# create an instance of ApiAuthSendPostRequest from a dict
api_auth_send_post_request_form_dict = api_auth_send_post_request.from_dict(api_auth_send_post_request_dict)

[Back to Model list] [Back to API list] [Back to README]