Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.07 KB

RequestLoginResponse.md

File metadata and controls

31 lines (22 loc) · 1.07 KB

RequestLoginResponse

Properties

Name Type Description Notes
status bool [optional]
message str [optional]
data RequestLoginDataResponse [optional]

Example

from hyperstack.models.request_login_response import RequestLoginResponse

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

# convert the object into a dict
request_login_response_dict = request_login_response_instance.to_dict()
# create an instance of RequestLoginResponse from a dict
request_login_response_form_dict = request_login_response.from_dict(request_login_response_dict)

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