Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.23 KB

IndexerBulkResource.md

File metadata and controls

35 lines (26 loc) · 1.23 KB

IndexerBulkResource

Properties

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]

Example

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]