| Name | Type | Description | Notes |
|---|---|---|---|
| id | float | [optional] | |
| name | str | [optional] |
from seerr.models.genre import Genre
# TODO update the JSON string below
json = "{}"
# create an instance of Genre from a JSON string
genre_instance = Genre.from_json(json)
# print the JSON string representation of the object
print(Genre.to_json())
# convert the object into a dict
genre_dict = genre_instance.to_dict()
# create an instance of Genre from a dict
genre_from_dict = Genre.from_dict(genre_dict)