| Name | Type | Description | Notes |
|---|---|---|---|
| auth0_id | str | Auth0 user identifier | |
| state | UserCatalogState | [optional] | |
| details | UserCatalogDetails | Details of the user in catalof DB. |
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)