Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.63 KB

CashbookEntry.md

File metadata and controls

39 lines (30 loc) · 1.63 KB

CashbookEntry

Properties

Name Type Description Notes
id str Cashbook id [optional]
var_date date Cashbook date [optional]
description str Cashbook description [optional]
kind CashbookEntryKind [optional]
type CashbookEntryType [optional]
entity_name str Cashbook entity name [optional]
document CashbookEntryDocument [optional]
amount_in float [Only for cashbook entry in] Cashbook total amount in [optional]
payment_account_in PaymentAccount [optional]
amount_out float [Only for cashbook entry out] Cashbook total amount out [optional]
payment_account_out PaymentAccount [optional]

Example

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_from_dict = CashbookEntry.from_dict(cashbook_entry_dict)

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