Image information associated with an asset (cover art, sample pages, etc.).
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | Image type name. | [optional] |
| url | str | Image URL. | [optional] |
from hlconnect_client.models.image_item import ImageItem
# TODO update the JSON string below
json = "{}"
# create an instance of ImageItem from a JSON string
image_item_instance = ImageItem.from_json(json)
# print the JSON string representation of the object
print(ImageItem.to_json())
# convert the object into a dict
image_item_dict = image_item_instance.to_dict()
# create an instance of ImageItem from a dict
image_item_from_dict = ImageItem.from_dict(image_item_dict)