Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.17 KB

UpdateUserResponse.md

File metadata and controls

32 lines (23 loc) · 1.17 KB

UpdateUserResponse

Properties

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

Example

from onelens_backend_client.models.update_user_response import UpdateUserResponse

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

# convert the object into a dict
update_user_response_dict = update_user_response_instance.to_dict()
# create an instance of UpdateUserResponse from a dict
update_user_response_form_dict = update_user_response.from_dict(update_user_response_dict)

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