Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.01 KB

File metadata and controls

34 lines (25 loc) · 1.01 KB

RelatedVideo

Properties

Name Type Description Notes
url str [optional]
key str [optional]
name str [optional]
size float [optional]
type str [optional]
site str [optional]

Example

from overseerr.models.related_video import RelatedVideo

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

# convert the object into a dict
related_video_dict = related_video_instance.to_dict()
# create an instance of RelatedVideo from a dict
related_video_from_dict = RelatedVideo.from_dict(related_video_dict)

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