Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

File metadata and controls

30 lines (21 loc) · 1.06 KB

LoginStatus200ResponseAnyOf

Properties

Name Type Description Notes
message str
code str

Example

from wallet.models.login_status200_response_any_of import LoginStatus200ResponseAnyOf

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

# convert the object into a dict
login_status200_response_any_of_dict = login_status200_response_any_of_instance.to_dict()
# create an instance of LoginStatus200ResponseAnyOf from a dict
login_status200_response_any_of_form_dict = login_status200_response_any_of.from_dict(login_status200_response_any_of_dict)

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