Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

File metadata and controls

31 lines (22 loc) · 1.08 KB

UsersInfoListResponse

Properties

Name Type Description Notes
message str [optional]
status bool [optional]
users_info UsersInfoFields [optional]

Example

from hyperstack.models.users_info_list_response import UsersInfoListResponse

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

# convert the object into a dict
users_info_list_response_dict = users_info_list_response_instance.to_dict()
# create an instance of UsersInfoListResponse from a dict
users_info_list_response_from_dict = UsersInfoListResponse.from_dict(users_info_list_response_dict)

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