Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 858 Bytes

File metadata and controls

29 lines (20 loc) · 858 Bytes

PricePerUnit

Price Per Unit

Properties

Name Type Description Notes

Example

from onelens_backend_client.models.price_per_unit import PricePerUnit

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

# convert the object into a dict
price_per_unit_dict = price_per_unit_instance.to_dict()
# create an instance of PricePerUnit from a dict
price_per_unit_form_dict = price_per_unit.from_dict(price_per_unit_dict)

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