Price Per Unit
| Name | Type | Description | Notes |
|---|
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)