| name | data type | description |
|---|---|---|
| type | string | |
| description | string | |
| paymentMethod | PaymentMethodEnum | |
| occTemplateCode | string | |
| amount | number | |
| customerAccountCode | string | |
| reference | string | |
| bankLot | string | |
| depositDate | number | |
| bankCollectionDate | number | |
| dueDate | number | |
| transactionDate | number | |
| listOCCReferenceforMatching | array of string | |
| isToMatching | boolean | |
| paymentOrder | string | |
| fees | number | |
| comment | string | |
| customFields | CustomFieldsDto |
Example
{
"type" : "...",
"description" : "...",
"paymentMethod" : "TIP",
"occTemplateCode" : "...",
"amount" : 12345.0,
"customerAccountCode" : "...",
"reference" : "...",
"bankLot" : "...",
"depositDate" : 12345,
"bankCollectionDate" : 12345,
"dueDate" : 12345,
"transactionDate" : 12345,
"listOCCReferenceforMatching" : [ "...", "..." ],
"isToMatching" : true,
"paymentOrder" : "...",
"fees" : 12345.0,
"comment" : "...",
"customFields" : {
"customField" : [ {
"code" : "...",
"valueDate" : 12345,
"valuePeriodStartDate" : 12345,
"valuePeriodEndDate" : 12345,
"valuePeriodPriority" : 12345,
"stringValue" : "...",
"dateValue" : 12345,
"longValue" : 12345,
"doubleValue" : 12345.0,
"value" : [ { }, { } ],
"mapValue" : {
"property1" : { },
"property2" : { }
},
"entityReferenceValue" : { },
"indexType" : "INDEX"
}, {
"code" : "...",
"valueDate" : 12345,
"valuePeriodStartDate" : 12345,
"valuePeriodEndDate" : 12345,
"valuePeriodPriority" : 12345,
"stringValue" : "...",
"dateValue" : 12345,
"longValue" : 12345,
"doubleValue" : 12345.0,
"value" : [ { }, { } ],
"mapValue" : {
"property1" : { },
"property2" : { }
},
"entityReferenceValue" : { },
"indexType" : "STORE_ONLY"
} ]
}
}