Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.19 KB

File metadata and controls

40 lines (31 loc) · 1.19 KB

Video

Properties

Name Type Description Notes
id AmenityId
created_at object
updated_at object
title object
description object
order_number object
additional_info_url object [optional]
is_active object
merchant_id str
provider VideoProvider
asset_id object
source WTVideoPlaybackSource

Example

from wallet.models.video import Video

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

# convert the object into a dict
video_dict = video_instance.to_dict()
# create an instance of Video from a dict
video_form_dict = video.from_dict(video_dict)

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