Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.13 KB

IndexerConfigResource.md

File metadata and controls

33 lines (24 loc) · 1.13 KB

IndexerConfigResource

Properties

Name Type Description Notes
id int [optional]
minimum_age int [optional]
maximum_size int [optional]
retention int [optional]
rss_sync_interval int [optional]

Example

from readarr.models.indexer_config_resource import IndexerConfigResource

# TODO update the JSON string below
json = "{}"
# create an instance of IndexerConfigResource from a JSON string
indexer_config_resource_instance = IndexerConfigResource.from_json(json)
# print the JSON string representation of the object
print(IndexerConfigResource.to_json())

# convert the object into a dict
indexer_config_resource_dict = indexer_config_resource_instance.to_dict()
# create an instance of IndexerConfigResource from a dict
indexer_config_resource_from_dict = IndexerConfigResource.from_dict(indexer_config_resource_dict)

[Back to Model list] [Back to API list] [Back to README]