| 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[IndexerResource] | [optional] | |
| enable_rss | bool | [optional] | |
| enable_automatic_search | bool | [optional] | |
| enable_interactive_search | bool | [optional] | |
| supports_rss | bool | [optional] | |
| supports_search | bool | [optional] | |
| protocol | DownloadProtocol | [optional] | |
| priority | int | [optional] | |
| download_client_id | int | [optional] |
from readarr.models.indexer_resource import IndexerResource
# TODO update the JSON string below
json = "{}"
# create an instance of IndexerResource from a JSON string
indexer_resource_instance = IndexerResource.from_json(json)
# print the JSON string representation of the object
print(IndexerResource.to_json())
# convert the object into a dict
indexer_resource_dict = indexer_resource_instance.to_dict()
# create an instance of IndexerResource from a dict
indexer_resource_from_dict = IndexerResource.from_dict(indexer_resource_dict)