Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1009 Bytes

File metadata and controls

30 lines (21 loc) · 1009 Bytes

UpdateUserRequest

Properties

Name Type Description Notes
name str The name of the user [optional]
image str The image of the user [optional]

Example

from better_auth.models.update_user_request import UpdateUserRequest

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

# convert the object into a dict
update_user_request_dict = update_user_request_instance.to_dict()
# create an instance of UpdateUserRequest from a dict
update_user_request_from_dict = UpdateUserRequest.from_dict(update_user_request_dict)

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