| 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 |
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)