Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.52 KB

File metadata and controls

40 lines (31 loc) · 1.52 KB

OAuth2RefreshToken

Properties

Name Type Description Notes
client_id str [optional]
created datetime [optional] [readonly]
created_by OAuth2Actor [optional]
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_refresh_token import OAuth2RefreshToken

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

# convert the object into a dict
o_auth2_refresh_token_dict = o_auth2_refresh_token_instance.to_dict()
# create an instance of OAuth2RefreshToken from a dict
o_auth2_refresh_token_from_dict = OAuth2RefreshToken.from_dict(o_auth2_refresh_token_dict)

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