| Name | Type | Description | Notes |
|---|---|---|---|
| imdb | RatingChild | [optional] | |
| tmdb | RatingChild | [optional] | |
| metacritic | RatingChild | [optional] | |
| rotten_tomatoes | RatingChild | [optional] |
from whisparr.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)