Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 951 Bytes

File metadata and controls

32 lines (23 loc) · 951 Bytes

Blocklist

Properties

Name Type Description Notes
tmdb_id float [optional]
title str [optional]
media MediaInfo [optional]
user_id float [optional]

Example

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)

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