| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | [optional] | |
| name | str | [optional] | |
| fields | List[ContractField] | [optional] | |
| implementation_name | str | [optional] | |
| implementation | str | [optional] | |
| config_contract | str | [optional] | |
| info_link | str | [optional] | |
| message | ProviderMessage | [optional] | |
| tags | List[int] | [optional] | |
| presets | List[ImportListResource] | [optional] | |
| enable_automatic_add | bool | [optional] | |
| search_for_missing_episodes | bool | [optional] | |
| should_monitor | MonitorTypes | [optional] | |
| monitor_new_items | NewItemMonitorTypes | [optional] | |
| root_folder_path | str | [optional] | |
| quality_profile_id | int | [optional] | |
| series_type | SeriesTypes | [optional] | |
| season_folder | bool | [optional] | |
| list_type | ImportListType | [optional] | |
| list_order | int | [optional] | |
| min_refresh_interval | str | [optional] |
from sonarr.models.import_list_resource import ImportListResource
# TODO update the JSON string below
json = "{}"
# create an instance of ImportListResource from a JSON string
import_list_resource_instance = ImportListResource.from_json(json)
# print the JSON string representation of the object
print(ImportListResource.to_json())
# convert the object into a dict
import_list_resource_dict = import_list_resource_instance.to_dict()
# create an instance of ImportListResource from a dict
import_list_resource_from_dict = ImportListResource.from_dict(import_list_resource_dict)