Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 832 Bytes

File metadata and controls

28 lines (19 loc) · 832 Bytes

VideoProvider

Properties

Name Type Description Notes

Example

from wallet.models.video_provider import VideoProvider

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

# convert the object into a dict
video_provider_dict = video_provider_instance.to_dict()
# create an instance of VideoProvider from a dict
video_provider_form_dict = video_provider.from_dict(video_provider_dict)

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