Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.12 KB

File metadata and controls

32 lines (23 loc) · 1.12 KB

Authorization

Properties

Name Type Description Notes
access_token_issued_at datetime When the access token was issued [readonly]
account str Account key [readonly]
refresh_token_issued_at datetime When the refresh token was issued [optional] [readonly]
status AuthorizationStatus

Example

from wordlift_client.models.authorization import Authorization

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

# convert the object into a dict
authorization_dict = authorization_instance.to_dict()
# create an instance of Authorization from a dict
authorization_from_dict = Authorization.from_dict(authorization_dict)

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