Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 861 Bytes

File metadata and controls

31 lines (22 loc) · 861 Bytes

MediaAsset

Properties

Name Type Description Notes
w int
h int
src str

Example

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)

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