Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.04 KB

File metadata and controls

32 lines (23 loc) · 1.04 KB

PriceItem

Price information for an asset in different currencies or for different customer segments.

Properties

Name Type Description Notes
type_id int Price type ID. [optional]
type_usage str Price type usage (e.g., digital, print). [optional]
price float Price value. [optional]

Example

from hlconnect_client.models.price_item import PriceItem

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

# convert the object into a dict
price_item_dict = price_item_instance.to_dict()
# create an instance of PriceItem from a dict
price_item_from_dict = PriceItem.from_dict(price_item_dict)

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