Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.11 KB

File metadata and controls

38 lines (29 loc) · 1.11 KB

Video

Properties

Name Type Description Notes
title str
description str
order_number int
media_url str
additional_info_url str [optional]
id SaveTicketSettingsRequestPaymentDesignID
created_at datetime
updated_at datetime
is_active bool
merchant_id str

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]