Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1020 Bytes

File metadata and controls

31 lines (22 loc) · 1020 Bytes

UserInfoResponse

Properties

Name Type Description Notes
status bool [optional]
message str [optional]
user UserFields [optional]

Example

from hyperstack.models.user_info_response import UserInfoResponse

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

# convert the object into a dict
user_info_response_dict = user_info_response_instance.to_dict()
# create an instance of UserInfoResponse from a dict
user_info_response_form_dict = user_info_response.from_dict(user_info_response_dict)

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