| Name | Type | Description | Notes |
|---|---|---|---|
| w | int | ||
| h | int | ||
| src | str |
from client.models.media_asset import MediaAsset
# TODO update the JSON string below
json = "{}"
# create an instance of MediaAsset from a JSON string
media_asset_instance = MediaAsset.from_json(json)
# print the JSON string representation of the object
print(MediaAsset.to_json())
# convert the object into a dict
media_asset_dict = media_asset_instance.to_dict()
# create an instance of MediaAsset from a dict
media_asset_from_dict = MediaAsset.from_dict(media_asset_dict)