Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 1009 Bytes

File metadata and controls

28 lines (19 loc) · 1009 Bytes

WTVideoPlaybackSourceType

Properties

Name Type Description Notes

Example

from wallet.models.wt_video_playback_source_type import WTVideoPlaybackSourceType

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

# convert the object into a dict
wt_video_playback_source_type_dict = wt_video_playback_source_type_instance.to_dict()
# create an instance of WTVideoPlaybackSourceType from a dict
wt_video_playback_source_type_form_dict = wt_video_playback_source_type.from_dict(wt_video_playback_source_type_dict)

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