| Name | Type | Description | Notes |
|---|---|---|---|
| amount_net | float | Vat item net amount | [optional] |
| amount_vat | float | Vat item vat amount | [optional] |
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)