RatedTransactionListResponseDto : A class containing the response of searching a list of Rated transactions
name | data type | description |
---|---|---|
paging | PagingAndFiltering | The paging. |
actionStatus | ActionStatus | The status response of the web service response. |
ratedTransaction | array of RatedTransactionDto | Rated transactions. |
Example
{ "paging" : { "fullTextFilter" : "...", "filters" : { "property1" : { }, "property2" : { } }, "fields" : "...", "offset" : 12345, "limit" : 12345, "sortBy" : "...", "sortOrder" : "DESCENDING", "multiSortOrder" : "...", "totalNumberOfRecords" : 12345, "loadReferenceDepth" : 12345 }, "actionStatus" : { "status" : "WARNING", "errorCode" : { }, "message" : "...", "entityId" : 12345, "entityCode" : "...", "nrAffected" : 12345, "json" : "..." }, "ratedTransaction" : [ { "usageDate" : 12345, "unitAmountWithoutTax" : 12345.0, "unitAmountWithTax" : 12345.0, "unitAmountTax" : 12345.0, "quantity" : 12345.0, "inputQuantity" : 12345.0, "rawAmountWithoutTax" : 12345.0, "rawAmountWithTax" : 12345.0, "amountWithoutTax" : 12345.0, "amountWithTax" : 12345.0, "amountTax" : 12345.0, "code" : "...", "status" : "OPEN", "description" : "...", "unityDescription" : "...", "priceplanCode" : "...", "doNotTriggerInvoicing" : true, "startDate" : 12345, "endDate" : 12345, "parameter1" : "...", "parameter2" : "...", "parameter3" : "...", "userAccountCode" : "...", "taxCode" : "...", "taxPercent" : 12345.0, "invoiceSubCategoryCode" : "...", "sellerCode" : "...", "billingAccountCode" : "...", "taxClassCode" : "...", "inputUnitOfMeasure" : "...", "ratingUnitOfMeasure" : "...", "sortIndex" : 12345 }, { "usageDate" : 12345, "unitAmountWithoutTax" : 12345.0, "unitAmountWithTax" : 12345.0, "unitAmountTax" : 12345.0, "quantity" : 12345.0, "inputQuantity" : 12345.0, "rawAmountWithoutTax" : 12345.0, "rawAmountWithTax" : 12345.0, "amountWithoutTax" : 12345.0, "amountWithTax" : 12345.0, "amountTax" : 12345.0, "code" : "...", "status" : "BILLED", "description" : "...", "unityDescription" : "...", "priceplanCode" : "...", "doNotTriggerInvoicing" : true, "startDate" : 12345, "endDate" : 12345, "parameter1" : "...", "parameter2" : "...", "parameter3" : "...", "userAccountCode" : "...", "taxCode" : "...", "taxPercent" : 12345.0, "invoiceSubCategoryCode" : "...", "sellerCode" : "...", "billingAccountCode" : "...", "taxClassCode" : "...", "inputUnitOfMeasure" : "...", "ratingUnitOfMeasure" : "...", "sortIndex" : 12345 } ] }