Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 970 Bytes

File metadata and controls

29 lines (20 loc) · 970 Bytes

DeleteUserRequest

Properties

Name Type Description Notes
email str The email address associated with the user profile.

Example

from talon_one.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]