| Name | Type | Description | Notes |
|---|---|---|---|
| tmdb_id | float | [optional] | |
| title | str | [optional] | |
| media | MediaInfo | [optional] | |
| user_id | float | [optional] |
from seerr.models.blocklist import Blocklist
# TODO update the JSON string below
json = "{}"
# create an instance of Blocklist from a JSON string
blocklist_instance = Blocklist.from_json(json)
# print the JSON string representation of the object
print(Blocklist.to_json())
# convert the object into a dict
blocklist_dict = blocklist_instance.to_dict()
# create an instance of Blocklist from a dict
blocklist_from_dict = Blocklist.from_dict(blocklist_dict)