Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

UpdateProfileRequest.md

File metadata and controls

31 lines (22 loc) · 1.15 KB

UpdateProfileRequest

Properties

Name Type Description Notes
name str The new name for the user. [optional]
avatar str The new avatar for the user, must be a URL. [optional]
username str The new username for the user, must be a valid username and unique. [optional]

Example

from py_logto.models.update_profile_request import UpdateProfileRequest

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

# convert the object into a dict
update_profile_request_dict = update_profile_request_instance.to_dict()
# create an instance of UpdateProfileRequest from a dict
update_profile_request_from_dict = UpdateProfileRequest.from_dict(update_profile_request_dict)

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