Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

UserAgentStatistics.md

File metadata and controls

31 lines (22 loc) · 1.03 KB

UserAgentStatistics

Properties

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

Example

from prowlarr.models.user_agent_statistics import UserAgentStatistics

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

# convert the object into a dict
user_agent_statistics_dict = user_agent_statistics_instance.to_dict()
# create an instance of UserAgentStatistics from a dict
user_agent_statistics_from_dict = UserAgentStatistics.from_dict(user_agent_statistics_dict)

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