Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.04 KB

IndexerCategory.md

File metadata and controls

32 lines (23 loc) · 1.04 KB

IndexerCategory

Properties

Name Type Description Notes
id int [optional]
name str [optional]
description str [optional]
sub_categories List[IndexerCategory] [optional] [readonly]

Example

from prowlarr.models.indexer_category import IndexerCategory

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

# convert the object into a dict
indexer_category_dict = indexer_category_instance.to_dict()
# create an instance of IndexerCategory from a dict
indexer_category_from_dict = IndexerCategory.from_dict(indexer_category_dict)

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