| Name | Type | Description | Notes |
|---|
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)