Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 979 Bytes

HostStatistics.md

File metadata and controls

31 lines (22 loc) · 979 Bytes

HostStatistics

Properties

Name Type Description Notes
host str [optional]
number_of_queries int [optional]
number_of_grabs int [optional]

Example

from prowlarr.models.host_statistics import HostStatistics

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

# convert the object into a dict
host_statistics_dict = host_statistics_instance.to_dict()
# create an instance of HostStatistics from a dict
host_statistics_from_dict = HostStatistics.from_dict(host_statistics_dict)

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