Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 899 Bytes

File metadata and controls

30 lines (21 loc) · 899 Bytes

VatItem

Properties

Name Type Description Notes
amount_net float Vat item net amount [optional]
amount_vat float Vat item vat amount [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_from_dict = VatItem.from_dict(vat_item_dict)

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