| Name |
Type |
Description |
Notes |
| ids |
List[int] |
|
[optional] |
| tags |
List[int] |
|
[optional] |
| apply_tags |
ApplyTags |
|
[optional] |
| enable_rss |
bool |
|
[optional] |
| enable_automatic_search |
bool |
|
[optional] |
| enable_interactive_search |
bool |
|
[optional] |
| priority |
int |
|
[optional] |
from sonarr.models.indexer_bulk_resource import IndexerBulkResource
# TODO update the JSON string below
json = "{}"
# create an instance of IndexerBulkResource from a JSON string
indexer_bulk_resource_instance = IndexerBulkResource.from_json(json)
# print the JSON string representation of the object
print(IndexerBulkResource.to_json())
# convert the object into a dict
indexer_bulk_resource_dict = indexer_bulk_resource_instance.to_dict()
# create an instance of IndexerBulkResource from a dict
indexer_bulk_resource_from_dict = IndexerBulkResource.from_dict(indexer_bulk_resource_dict)
[Back to Model list] [Back to API list] [Back to README]