Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 860 Bytes

VatItem.md

File metadata and controls

29 lines (21 loc) · 860 Bytes

VatItem

Properties

Name Type Description Notes
amount_net float [optional]
amount_vat float [optional]

Example

from fattureincloud_python_sdk.models.vat_item import VatItem

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

# convert the object into a dict
vat_item_dict = vat_item_instance.to_dict()
# create an instance of VatItem from a dict
vat_item_form_dict = vat_item.from_dict(vat_item_dict)

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