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

GetAllUsersRequest

Properties

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

Example

from onelens_backend_client.models.get_all_users_request import GetAllUsersRequest

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

# convert the object into a dict
get_all_users_request_dict = get_all_users_request_instance.to_dict()
# create an instance of GetAllUsersRequest from a dict
get_all_users_request_form_dict = get_all_users_request.from_dict(get_all_users_request_dict)

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