Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.08 KB

File metadata and controls

35 lines (26 loc) · 1.08 KB

OAuthToken

Properties

Name Type Description Notes
access_token str [optional]
created_at datetime [optional]
expires_at datetime [optional]
refresh_token str [optional]
status str [optional]
token_type str [optional]
valid bool [optional]

Example

from instana_client.models.o_auth_token import OAuthToken

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

# convert the object into a dict
o_auth_token_dict = o_auth_token_instance.to_dict()
# create an instance of OAuthToken from a dict
o_auth_token_from_dict = OAuthToken.from_dict(o_auth_token_dict)

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