Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.29 KB

DocumentItem.md

File metadata and controls

39 lines (30 loc) · 1.29 KB

DocumentItem

Properties

Name Type Description Notes
product_id int [optional]
name str [optional]
net_unit_amount float [optional]
quantity float [optional]
unit str [optional]
net_amount float [optional]
gross_amount float [optional]
vat Vat [optional]
vat_amount float [optional]
entitlement Entitlement [optional]
comment str [optional]

Example

from clientapi_billingo.models.document_item import DocumentItem

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

# convert the object into a dict
document_item_dict = document_item_instance.to_dict()
# create an instance of DocumentItem from a dict
document_item_from_dict = DocumentItem.from_dict(document_item_dict)

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