Name | Type | Description | Notes |
---|---|---|---|
id | int | [optional] | |
indexers | List[IndexerStatistics] | [optional] | |
user_agents | List[UserAgentStatistics] | [optional] | |
hosts | List[HostStatistics] | [optional] |
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)