Name | Type | Description | Notes |
---|---|---|---|
id | str | Cashbook unique identifier. | [optional] |
var_date | date | Cashbook date. | [optional] |
description | str | Cashbook description. | [optional] |
kind | CashbookEntryKind | [optional] | |
type | CashbookEntryType | [optional] | |
entity_name | str | Entity name. | [optional] |
document | CashbookEntryDocument | [optional] | |
amount_in | float | [Only for cashbook entry in] Total amount in. | [optional] |
payment_account_in | PaymentAccount | [optional] | |
amount_out | float | [Only for cashbook entry out] Total amount out. | [optional] |
payment_account_out | PaymentAccount | [optional] |
from fattureincloud_python_sdk.models.cashbook_entry import CashbookEntry
# TODO update the JSON string below
json = "{}"
# create an instance of CashbookEntry from a JSON string
cashbook_entry_instance = CashbookEntry.from_json(json)
# print the JSON string representation of the object
print CashbookEntry.to_json()
# convert the object into a dict
cashbook_entry_dict = cashbook_entry_instance.to_dict()
# create an instance of CashbookEntry from a dict
cashbook_entry_form_dict = cashbook_entry.from_dict(cashbook_entry_dict)