| Name |
Type |
Description |
Notes |
| numerations |
Dict[str, Dict[str, int]] |
|
[optional] |
| numerations_list |
List[str] |
Receipt used numerations list |
[optional] |
| rc_centers_list |
List[str] |
Receipt used revenue centers list |
[optional] |
| payment_accounts_list |
List[PaymentAccount] |
Payment accounts list |
[optional] |
| categories_list |
List[str] |
Receipt categories list |
[optional] |
| vat_types_list |
List[VatType] |
Vat types list |
[optional] |
from fattureincloud_python_sdk.models.receipt_pre_create_info import ReceiptPreCreateInfo
# TODO update the JSON string below
json = "{}"
# create an instance of ReceiptPreCreateInfo from a JSON string
receipt_pre_create_info_instance = ReceiptPreCreateInfo.from_json(json)
# print the JSON string representation of the object
print(ReceiptPreCreateInfo.to_json())
# convert the object into a dict
receipt_pre_create_info_dict = receipt_pre_create_info_instance.to_dict()
# create an instance of ReceiptPreCreateInfo from a dict
receipt_pre_create_info_from_dict = ReceiptPreCreateInfo.from_dict(receipt_pre_create_info_dict)
[Back to Model list] [Back to API list] [Back to README]