Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 942 Bytes

File metadata and controls

31 lines (22 loc) · 942 Bytes

RatingChild

Properties

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

Example

from radarr.models.rating_child import RatingChild

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

# convert the object into a dict
rating_child_dict = rating_child_instance.to_dict()
# create an instance of RatingChild from a dict
rating_child_from_dict = RatingChild.from_dict(rating_child_dict)

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