Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 950 Bytes

UpdateUserRequestName.md

File metadata and controls

28 lines (19 loc) · 950 Bytes

UpdateUserRequestName

Properties

Name Type Description Notes

Example

from py_logto.models.update_user_request_name import UpdateUserRequestName

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

# convert the object into a dict
update_user_request_name_dict = update_user_request_name_instance.to_dict()
# create an instance of UpdateUserRequestName from a dict
update_user_request_name_from_dict = UpdateUserRequestName.from_dict(update_user_request_name_dict)

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