Name | Type | Description | Notes |
---|---|---|---|
content | str | [optional] | |
content_length | int | [optional] | |
media_name | str | [optional] |
from bandwidth.models.media import Media
# TODO update the JSON string below
json = "{}"
# create an instance of Media from a JSON string
media_instance = Media.from_json(json)
# print the JSON string representation of the object
print(Media.to_json())
# convert the object into a dict
media_dict = media_instance.to_dict()
# create an instance of Media from a dict
media_from_dict = Media.from_dict(media_dict)