Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 913 Bytes

File metadata and controls

30 lines (21 loc) · 913 Bytes

BearerResponse

Properties

Name Type Description Notes
access_token str
token_type str

Example

from cms_client.models.bearer_response import BearerResponse

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

# convert the object into a dict
bearer_response_dict = bearer_response_instance.to_dict()
# create an instance of BearerResponse from a dict
bearer_response_from_dict = BearerResponse.from_dict(bearer_response_dict)

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