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

TestRadarrRequest

Properties

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

Example

from overseerr.models.test_radarr_request import TestRadarrRequest

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

# convert the object into a dict
test_radarr_request_dict = test_radarr_request_instance.to_dict()
# create an instance of TestRadarrRequest from a dict
test_radarr_request_from_dict = TestRadarrRequest.from_dict(test_radarr_request_dict)

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