| name | data type | description |
|---|---|---|
| product | string | |
| userAccount | string | |
| subscription | string | |
| operationDate | number | |
| quantity | number | |
| description | string | |
| amountWithoutTax | number | |
| amountWithTax | number | |
| criteria1 | string | |
| criteria2 | string | |
| criteria3 | string | |
| customFields | CustomFieldsDto |
Example
{
"product" : "...",
"userAccount" : "...",
"subscription" : "...",
"operationDate" : 12345,
"quantity" : 12345.0,
"description" : "...",
"amountWithoutTax" : 12345.0,
"amountWithTax" : 12345.0,
"criteria1" : "...",
"criteria2" : "...",
"criteria3" : "...",
"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" : "STORE_ONLY"
}, {
"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"
} ]
}
}