Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1019 Bytes

File metadata and controls

30 lines (21 loc) · 1019 Bytes

CreateAuthLocalRequest

Properties

Name Type Description Notes
email str
password str

Example

from overseerr.models.create_auth_local_request import CreateAuthLocalRequest

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

# convert the object into a dict
create_auth_local_request_dict = create_auth_local_request_instance.to_dict()
# create an instance of CreateAuthLocalRequest from a dict
create_auth_local_request_from_dict = CreateAuthLocalRequest.from_dict(create_auth_local_request_dict)

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