Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.36 KB

File metadata and controls

39 lines (30 loc) · 1.36 KB

OAuth2Token

Properties

Name Type Description Notes
client_id str [optional]
created datetime [optional] [readonly]
expires_at datetime [optional] [readonly]
id str [optional] [readonly]
issuer str [optional]
last_updated datetime [optional] [readonly]
scopes List[str] [optional]
status GrantOrTokenStatus [optional]
user_id str [optional]
embedded Dict[str, object] [optional] [readonly]
links LinksSelf [optional]

Example

from okta.models.o_auth2_token import OAuth2Token

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

# convert the object into a dict
o_auth2_token_dict = o_auth2_token_instance.to_dict()
# create an instance of OAuth2Token from a dict
o_auth2_token_from_dict = OAuth2Token.from_dict(o_auth2_token_dict)

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