Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.03 KB

File metadata and controls

34 lines (25 loc) · 1.03 KB

Collection

Properties

Name Type Description Notes
id float [optional]
name str [optional]
overview str [optional]
poster_path str [optional]
backdrop_path str [optional]
parts List[MovieResult] [optional]

Example

from overseerr.models.collection import Collection

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

# convert the object into a dict
collection_dict = collection_instance.to_dict()
# create an instance of Collection from a dict
collection_from_dict = Collection.from_dict(collection_dict)

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