Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

File metadata and controls

30 lines (21 loc) · 1.03 KB

WTVideoPlaybackSource

Properties

Name Type Description Notes
type WTVideoPlaybackSourceType
url object

Example

from wallet.models.wt_video_playback_source import WTVideoPlaybackSource

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

# convert the object into a dict
wt_video_playback_source_dict = wt_video_playback_source_instance.to_dict()
# create an instance of WTVideoPlaybackSource from a dict
wt_video_playback_source_form_dict = wt_video_playback_source.from_dict(wt_video_playback_source_dict)

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