| 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] |
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)