Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.17 KB

File metadata and controls

38 lines (29 loc) · 1.17 KB

Product

Properties

Name Type Description Notes
id int [optional] [readonly]
name str
comment str [optional]
currency Currency
vat Vat
net_unit_price float [optional]
unit str
general_ledger_number str [optional]
general_ledger_taxcode str [optional]
entitlement Entitlement [optional]

Example

from clientapi_billingo.models.product import Product

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

# convert the object into a dict
product_dict = product_instance.to_dict()
# create an instance of Product from a dict
product_from_dict = Product.from_dict(product_dict)

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