Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 985 Bytes

File metadata and controls

32 lines (23 loc) · 985 Bytes

TrailerBase

Youtube Details

Properties

Name Type Description Notes
youtube_id str YouTube ID [optional]
url str YouTube URL [optional]
embed_url str Parsed Embed URL [optional]

Example

from jikan_openapi.models.trailer_base import TrailerBase

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

# convert the object into a dict
trailer_base_dict = trailer_base_instance.to_dict()
# create an instance of TrailerBase from a dict
trailer_base_form_dict = trailer_base.from_dict(trailer_base_dict)

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