| Name | Type | Description | Notes |
|---|---|---|---|
| media_key | str | [optional] | |
| type | str | ||
| url | str | [optional] | |
| preview_image_url | str | [optional] | |
| height | float | [optional] | |
| width | float | [optional] | |
| duration_ms | float | [optional] | |
| variants | List[XMediaVariantsInner] | [optional] |
from unifapi.models.x_media import XMedia
# TODO update the JSON string below
json = "{}"
# create an instance of XMedia from a JSON string
x_media_instance = XMedia.from_json(json)
# print the JSON string representation of the object
print(XMedia.to_json())
# convert the object into a dict
x_media_dict = x_media_instance.to_dict()
# create an instance of XMedia from a dict
x_media_from_dict = XMedia.from_dict(x_media_dict)