| 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] |
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)