Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.07 KB

File metadata and controls

29 lines (20 loc) · 1.07 KB

CreateAuthResetPasswordRequest

Properties

Name Type Description Notes
email str

Example

from overseerr.models.create_auth_reset_password_request import CreateAuthResetPasswordRequest

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

# convert the object into a dict
create_auth_reset_password_request_dict = create_auth_reset_password_request_instance.to_dict()
# create an instance of CreateAuthResetPasswordRequest from a dict
create_auth_reset_password_request_from_dict = CreateAuthResetPasswordRequest.from_dict(create_auth_reset_password_request_dict)

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