Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.53 KB

File metadata and controls

41 lines (32 loc) · 1.53 KB

CollectionMovieResource

Properties

Name Type Description Notes
tmdb_id int [optional]
imdb_id str [optional]
title str [optional]
clean_title str [optional]
sort_title str [optional]
status MovieStatusType [optional]
overview str [optional]
runtime int [optional]
images List[MediaCover] [optional]
year int [optional]
ratings Ratings [optional]
genres List[str] [optional]
folder str [optional]

Example

from whisparr.models.collection_movie_resource import CollectionMovieResource

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

# convert the object into a dict
collection_movie_resource_dict = collection_movie_resource_instance.to_dict()
# create an instance of CollectionMovieResource from a dict
collection_movie_resource_from_dict = CollectionMovieResource.from_dict(collection_movie_resource_dict)

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