| Name | Type | Description | Notes |
|---|---|---|---|
| token | str | JWT authentication token | [optional] |
| user | User | [optional] | |
| expires_at | datetime | [optional] |
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)