Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

File metadata and controls

31 lines (22 loc) · 1.13 KB

AuthUserInfoResponseModel

Properties

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

Example

from hyperstack.models.auth_user_info_response_model import AuthUserInfoResponseModel

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

# convert the object into a dict
auth_user_info_response_model_dict = auth_user_info_response_model_instance.to_dict()
# create an instance of AuthUserInfoResponseModel from a dict
auth_user_info_response_model_from_dict = AuthUserInfoResponseModel.from_dict(auth_user_info_response_model_dict)

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