Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.19 KB

IndexerStatsResource.md

File metadata and controls

32 lines (23 loc) · 1.19 KB

IndexerStatsResource

Properties

Name Type Description Notes
id int [optional]
indexers List[IndexerStatistics] [optional]
user_agents List[UserAgentStatistics] [optional]
hosts List[HostStatistics] [optional]

Example

from prowlarr.models.indexer_stats_resource import IndexerStatsResource

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

# convert the object into a dict
indexer_stats_resource_dict = indexer_stats_resource_instance.to_dict()
# create an instance of IndexerStatsResource from a dict
indexer_stats_resource_from_dict = IndexerStatsResource.from_dict(indexer_stats_resource_dict)

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