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] |
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]