Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.16 KB

File metadata and controls

33 lines (24 loc) · 1.16 KB

AdminCreateUserRequest

Properties

Name Type Description Notes
email str The email of the user
password str The password of the user
name str The name of the user
role str [optional]
data str [optional]

Example

from better_auth.models.admin_create_user_request import AdminCreateUserRequest

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

# convert the object into a dict
admin_create_user_request_dict = admin_create_user_request_instance.to_dict()
# create an instance of AdminCreateUserRequest from a dict
admin_create_user_request_from_dict = AdminCreateUserRequest.from_dict(admin_create_user_request_dict)

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