Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.52 KB

File metadata and controls

34 lines (25 loc) · 1.52 KB

SignUpWithEmailAndPasswordRequest

Properties

Name Type Description Notes
name str The name of the user
email str The email of the user
password str The password of the user
image str The profile image URL of the user [optional]
callback_url str The URL to use for email verification callback [optional]
remember_me bool If this is false, the session will not be remembered. Default is `true`. [optional]

Example

from better_auth.models.sign_up_with_email_and_password_request import SignUpWithEmailAndPasswordRequest

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

# convert the object into a dict
sign_up_with_email_and_password_request_dict = sign_up_with_email_and_password_request_instance.to_dict()
# create an instance of SignUpWithEmailAndPasswordRequest from a dict
sign_up_with_email_and_password_request_from_dict = SignUpWithEmailAndPasswordRequest.from_dict(sign_up_with_email_and_password_request_dict)

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