AccountReceivablePayment

Structure

FieldTypeRequiredDescription
idIntegertrueUnique identifier for the AccountReceivablePayment.
accountReceivableAccountReceivabletrueRelated AccountReceivable.
paymentPaymenttrueProduct of type Payment associated.
amountAfterTaxBigDecimaltrueValue of the payment.
currencyCurrencytrueRelated Currency.
referenceStringtrueReference of the AccountReceivablePayment.
createdBusinessDateLocalDatetrueThe date of the business date when it was created.
accountReceivablePaymentInvoiceListArray of AccountReceivablePaymentInvoicetrue

JSON representation

{
	"id": 1,
	"accountReceivable": {
		"id": 11,
		"code": "AM",
		"name": "American Express"
	},
	"payment": {
		"code": "VI",
		"name": "Visa",
		"id": 50
	},
	"amountAfterTax": 394.000000,
	"currency": {
		"id": 1,
		"code": "EUR",
		"name": "Euro"
	},
	"reference": "Ref #121561",
	"createdBusinessDate": "2020-05-04",
	"accountReceivablePaymentInvoiceList": [
        {
          "amountAfterTax": 108.000000,
          "invoice": {
            "id": 537,
            "invoiceSerie": "GHD/",
            "invoiceNumber": 174,
            "invoiceDate": "2020-06-21",
            "company": null,
            "customer": null,
           ...
          }
        }
      ]
}