Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.02 KB

File metadata and controls

30 lines (21 loc) · 1.02 KB

MovieCollectionResource

Properties

Name Type Description Notes
title str [optional]
tmdb_id int [optional]

Example

from whisparr.models.movie_collection_resource import MovieCollectionResource

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

# convert the object into a dict
movie_collection_resource_dict = movie_collection_resource_instance.to_dict()
# create an instance of MovieCollectionResource from a dict
movie_collection_resource_from_dict = MovieCollectionResource.from_dict(movie_collection_resource_dict)

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