You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Invoice transaction ID that received the allocation
[optional]
allocated_amount
float
Total amount allocated to this transaction from all receipts
[optional]
Example
fromcloudbeds_fiscal_document.models.invoice_transaction_allocationimportInvoiceTransactionAllocation# TODO update the JSON string belowjson="{}"# create an instance of InvoiceTransactionAllocation from a JSON stringinvoice_transaction_allocation_instance=InvoiceTransactionAllocation.from_json(json)
# print the JSON string representation of the objectprint(InvoiceTransactionAllocation.to_json())
# convert the object into a dictinvoice_transaction_allocation_dict=invoice_transaction_allocation_instance.to_dict()
# create an instance of InvoiceTransactionAllocation from a dictinvoice_transaction_allocation_from_dict=InvoiceTransactionAllocation.from_dict(invoice_transaction_allocation_dict)