| Name |
Type |
Description |
Notes |
| hostname |
str |
|
|
| port |
float |
|
|
| api_key |
str |
|
|
| use_ssl |
bool |
|
|
| base_url |
str |
|
[optional] |
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]