Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.22 KB

GetAllUsersResponse.md

File metadata and controls

32 lines (23 loc) · 1.22 KB

GetAllUsersResponse

Properties

Name Type Description Notes
auth0_id str Auth0 user identifier
state UserCatalogState [optional]
details UserCatalogDetails Details of the user in catalof DB.
users List[GetUserByIDResponse] List of users

Example

from onelens_backend_client.models.get_all_users_response import GetAllUsersResponse

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

# convert the object into a dict
get_all_users_response_dict = get_all_users_response_instance.to_dict()
# create an instance of GetAllUsersResponse from a dict
get_all_users_response_form_dict = get_all_users_response.from_dict(get_all_users_response_dict)

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