| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | Receipt id | [optional] |
| var_date | date | Receipt date | [optional] |
| number | float | Receipt number | [optional] |
| numeration | str | Receipt numeration | [optional] |
| amount_net | float | Receipt total net amount | [optional] |
| amount_vat | float | Receipt total vat amount | [optional] |
| amount_gross | float | Receipt total gross amount | [optional] |
| use_gross_prices | bool | Receipt uses gross prices | [optional] |
| type | ReceiptType | [optional] | |
| description | str | Receipt description | [optional] |
| rc_center | str | Receipt revenue center | [optional] |
| created_at | str | Receipt creation date | [optional] |
| updated_at | str | Receipt last update date | [optional] |
| payment_account | PaymentAccount | [optional] | |
| items_list | List[ReceiptItemsListItem] | [optional] |
from fattureincloud_python_sdk.models.receipt import Receipt
# TODO update the JSON string below
json = "{}"
# create an instance of Receipt from a JSON string
receipt_instance = Receipt.from_json(json)
# print the JSON string representation of the object
print(Receipt.to_json())
# convert the object into a dict
receipt_dict = receipt_instance.to_dict()
# create an instance of Receipt from a dict
receipt_from_dict = Receipt.from_dict(receipt_dict)