The Class MatchingCodeDto.
| name | data type | description |
|---|---|---|
| code | string | The code. |
| matchingType | MatchingTypeEnum | The matching type. |
| matchingDate | number | The matching date. |
| auditable | AuditableDto | |
| auditableField | array of AuditableFieldDto | |
| matchingAmountCredit | number | The matching amount credit. |
| matchingAmountDebit | number | The matching amount debit. |
Example
{
"code" : "...",
"matchingType" : "A",
"matchingDate" : 12345,
"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" : "..."
} ],
"matchingAmountCredit" : 12345.0,
"matchingAmountDebit" : 12345.0
}