Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 963 Bytes

File metadata and controls

31 lines (22 loc) · 963 Bytes

ImageItem

Image information associated with an asset (cover art, sample pages, etc.).

Properties

Name Type Description Notes
name str Image type name. [optional]
url str Image URL. [optional]

Example

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)

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