Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 978 Bytes

File metadata and controls

31 lines (22 loc) · 978 Bytes

AuthResponse

Properties

Name Type Description Notes
token str JWT authentication token [optional]
user User [optional]
expires_at datetime [optional]

Example

from aerostack.models.auth_response import AuthResponse

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

# convert the object into a dict
auth_response_dict = auth_response_instance.to_dict()
# create an instance of AuthResponse from a dict
auth_response_form_dict = auth_response.from_dict(auth_response_dict)

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