| Name |
Type |
Description |
Notes |
| callback_url |
str |
The callback URL to redirect to after the user is deleted |
[optional] |
| password |
str |
The user's password. Required if session is not fresh |
[optional] |
| token |
str |
The deletion verification token |
[optional] |
from better_auth.models.delete_user_request import DeleteUserRequest
# TODO update the JSON string below
json = "{}"
# create an instance of DeleteUserRequest from a JSON string
delete_user_request_instance = DeleteUserRequest.from_json(json)
# print the JSON string representation of the object
print(DeleteUserRequest.to_json())
# convert the object into a dict
delete_user_request_dict = delete_user_request_instance.to_dict()
# create an instance of DeleteUserRequest from a dict
delete_user_request_from_dict = DeleteUserRequest.from_dict(delete_user_request_dict)
[Back to Model list] [Back to API list] [Back to README]