Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.3 KB

File metadata and controls

29 lines (20 loc) · 1.3 KB

WTAuthenticationCheckSessionTokenStatusResponse

Properties

Name Type Description Notes
status str

Example

from wallet.models.wt_authentication_check_session_token_status_response import WTAuthenticationCheckSessionTokenStatusResponse

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

# convert the object into a dict
wt_authentication_check_session_token_status_response_dict = wt_authentication_check_session_token_status_response_instance.to_dict()
# create an instance of WTAuthenticationCheckSessionTokenStatusResponse from a dict
wt_authentication_check_session_token_status_response_form_dict = wt_authentication_check_session_token_status_response.from_dict(wt_authentication_check_session_token_status_response_dict)

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