Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

UpdateUserAPIRequest.md

File metadata and controls

30 lines (21 loc) · 1.08 KB

UpdateUserAPIRequest

Properties

Name Type Description Notes
state UserCatalogState [optional]
details UserCatalogDetails [optional]

Example

from onelens_backend_client.models.update_user_api_request import UpdateUserAPIRequest

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

# convert the object into a dict
update_user_api_request_dict = update_user_api_request_instance.to_dict()
# create an instance of UpdateUserAPIRequest from a dict
update_user_api_request_form_dict = update_user_api_request.from_dict(update_user_api_request_dict)

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