Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.12 KB

File metadata and controls

35 lines (26 loc) · 1.12 KB

PricebookModel

Properties

Name Type Description Notes
discount_applied bool [optional]
end_time datetime [optional]
id int [optional]
name str [optional]
original_value float [optional]
start_time datetime [optional]
value float [optional]

Example

from hyperstack.models.pricebook_model import PricebookModel

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

# convert the object into a dict
pricebook_model_dict = pricebook_model_instance.to_dict()
# create an instance of PricebookModel from a dict
pricebook_model_from_dict = PricebookModel.from_dict(pricebook_model_dict)

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