Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

AccesstokenResponse.md

File metadata and controls

31 lines (22 loc) · 1.02 KB

AccesstokenResponse

Properties

Name Type Description Notes
access_token str [optional]
token_type str [optional]
expires_in str [optional]

Example

from xi.sdk.resellers.models.accesstoken_response import AccesstokenResponse

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

# convert the object into a dict
accesstoken_response_dict = accesstoken_response_instance.to_dict()
# create an instance of AccesstokenResponse from a dict
accesstoken_response_from_dict = AccesstokenResponse.from_dict(accesstoken_response_dict)

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