Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 824 Bytes

File metadata and controls

30 lines (21 loc) · 824 Bytes

Ratings

Properties

Name Type Description Notes
votes int [optional]
value float [optional]

Example

from sonarr.models.ratings import Ratings

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

# convert the object into a dict
ratings_dict = ratings_instance.to_dict()
# create an instance of Ratings from a dict
ratings_from_dict = Ratings.from_dict(ratings_dict)

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