Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.26 KB

File metadata and controls

35 lines (26 loc) · 1.26 KB

PackageItem

Package deal or bundle that includes an asset.

Properties

Name Type Description Notes
asset_id int Asset ID included in the package. [optional]
instrumentation_part_code str Instrumentation part code. [optional]
instrumentation_part_name str Instrumentation part name. [optional]
count int Count of items. [optional]
sequence int Sequence number. [optional]
score bool Score flag indicating if this is a score. [optional]

Example

from hlconnect_client.models.package_item import PackageItem

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

# convert the object into a dict
package_item_dict = package_item_instance.to_dict()
# create an instance of PackageItem from a dict
package_item_from_dict = PackageItem.from_dict(package_item_dict)

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