Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

RedirectTokenResponse.md

File metadata and controls

31 lines (22 loc) · 1.02 KB

RedirectTokenResponse

Properties

Name Type Description Notes
platform_key str [readonly]
url str
token str [readonly]

Example

from iblai.models.redirect_token_response import RedirectTokenResponse

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

# convert the object into a dict
redirect_token_response_dict = redirect_token_response_instance.to_dict()
# create an instance of RedirectTokenResponse from a dict
redirect_token_response_from_dict = RedirectTokenResponse.from_dict(redirect_token_response_dict)

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