Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.11 KB

File metadata and controls

34 lines (25 loc) · 1.11 KB

SocialAuthToken

Properties

Name Type Description Notes
expires_at datetime [optional] [readonly]
id str [optional] [readonly]
scopes List[str] [optional]
token str [optional]
token_auth_scheme str [optional]
token_type str [optional]

Example

from okta.models.social_auth_token import SocialAuthToken

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

# convert the object into a dict
social_auth_token_dict = social_auth_token_instance.to_dict()
# create an instance of SocialAuthToken from a dict
social_auth_token_from_dict = SocialAuthToken.from_dict(social_auth_token_dict)

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