Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.06 KB

File metadata and controls

31 lines (22 loc) · 1.06 KB

RenderingItem

Available renderings (formats) for an asset (e.g., PDF, Scorch, MusicXML).

Properties

Name Type Description Notes
type str Rendering type (pdf, scorch, musicxml, embed, audio, streaming). [optional]
usage str Rendering usage (full or preview). [optional]

Example

from hlconnect_client.models.rendering_item import RenderingItem

# TODO update the JSON string below
json = "{}"
# create an instance of RenderingItem from a JSON string
rendering_item_instance = RenderingItem.from_json(json)
# print the JSON string representation of the object
print(RenderingItem.to_json())

# convert the object into a dict
rendering_item_dict = rendering_item_instance.to_dict()
# create an instance of RenderingItem from a dict
rendering_item_from_dict = RenderingItem.from_dict(rendering_item_dict)

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