Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.32 KB

File metadata and controls

29 lines (20 loc) · 1.32 KB

CreateAuthJellyfinQuickconnectAuthenticateRequest

Properties

Name Type Description Notes
secret str

Example

from seerr.models.create_auth_jellyfin_quickconnect_authenticate_request import CreateAuthJellyfinQuickconnectAuthenticateRequest

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

# convert the object into a dict
create_auth_jellyfin_quickconnect_authenticate_request_dict = create_auth_jellyfin_quickconnect_authenticate_request_instance.to_dict()
# create an instance of CreateAuthJellyfinQuickconnectAuthenticateRequest from a dict
create_auth_jellyfin_quickconnect_authenticate_request_from_dict = CreateAuthJellyfinQuickconnectAuthenticateRequest.from_dict(create_auth_jellyfin_quickconnect_authenticate_request_dict)

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