The Class MatchingAmountDto.
| name | data type | description |
|---|---|---|
| matchingCode | string | The matching code. |
| matchingAmount | number | The matching amount. |
| matchingCodes | MatchingCodesDto | The matching codes. |
| auditable | AuditableDto | |
| auditableField | array of AuditableFieldDto |
Example
{
"matchingCode" : "...",
"matchingAmount" : 12345.0,
"matchingCodes" : {
"matchingCode" : [ {
"code" : "...",
"matchingType" : "M",
"matchingDate" : 12345,
"auditable" : { },
"auditableField" : [ { }, { } ],
"matchingAmountCredit" : 12345.0,
"matchingAmountDebit" : 12345.0
}, {
"code" : "...",
"matchingType" : "A",
"matchingDate" : 12345,
"auditable" : { },
"auditableField" : [ { }, { } ],
"matchingAmountCredit" : 12345.0,
"matchingAmountDebit" : 12345.0
} ]
},
"auditable" : {
"created" : 12345,
"updated" : 12345,
"creator" : "...",
"updater" : "..."
},
"auditableField" : [ {
"entityClass" : "...",
"id" : 12345,
"fieldName" : "...",
"code" : "...",
"changeOrigin" : "...",
"auditable" : {
"created" : 12345,
"updated" : 12345,
"creator" : "...",
"updater" : "..."
},
"auditableField" : [ { }, { } ],
"description" : "...",
"originName" : "...",
"updatedCode" : "...",
"previousState" : "...",
"currentState" : "...",
"created" : "...",
"actor" : "..."
}, {
"entityClass" : "...",
"id" : 12345,
"fieldName" : "...",
"code" : "...",
"changeOrigin" : "...",
"auditable" : {
"created" : 12345,
"updated" : 12345,
"creator" : "...",
"updater" : "..."
},
"auditableField" : [ { }, { } ],
"description" : "...",
"originName" : "...",
"updatedCode" : "...",
"previousState" : "...",
"currentState" : "...",
"created" : "...",
"actor" : "..."
} ]
}