Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.02 KB

File metadata and controls

33 lines (24 loc) · 1.02 KB

TestSonarrRequest

Properties

Name Type Description Notes
hostname str
port float
api_key str
use_ssl bool
base_url str [optional]

Example

from seerr.models.test_sonarr_request import TestSonarrRequest

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

# convert the object into a dict
test_sonarr_request_dict = test_sonarr_request_instance.to_dict()
# create an instance of TestSonarrRequest from a dict
test_sonarr_request_from_dict = TestSonarrRequest.from_dict(test_sonarr_request_dict)

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