GetListCommercialOrderDtoResponse Data Type

Pagination and sorting criteria plus total record count.

Implemented Interfaces
Serializable
Properties
name data type description
commercialOrderDtos array of CommercialOrderDto
paging PagingAndFiltering The paging.
actionStatus ActionStatus The status response of the web service response.

Example

{
  "commercialOrderDtos" : [ {
    "sellerCode" : "...",
    "orderNumber" : "...",
    "label" : "...",
    "billingAccountCode" : "...",
    "quoteCode" : "...",
    "contractCode" : "...",
    "orderTypeCode" : "...",
    "invoicingPlanCode" : "...",
    "status" : "...",
    "orderProgress" : 12345,
    "progressDate" : 12345,
    "orderDate" : 12345,
    "deliveryDate" : 12345,
    "customerServiceBegin" : 12345,
    "customerServiceDuration" : 12345,
    "externalReference" : "...",
    "orderParentCode" : "...",
    "id" : 12345,
    "userAccountCode" : "...",
    "accessDto" : {
      "code" : "...",
      "subscription" : "...",
      "subscriptionValidityDate" : 12345,
      "startDate" : 12345,
      "endDate" : 12345,
      "customFields" : { },
      "disabled" : true
    },
    "orderLotCodes" : [ "...", "..." ],
    "customFields" : {
      "customField" : [ { }, { } ],
      "inheritedCustomField" : [ { }, { } ]
    },
    "code" : "...",
    "description" : "...",
    "discountPlanCode" : "...",
    "salesPersonName" : "..."
  }, {
    "sellerCode" : "...",
    "orderNumber" : "...",
    "label" : "...",
    "billingAccountCode" : "...",
    "quoteCode" : "...",
    "contractCode" : "...",
    "orderTypeCode" : "...",
    "invoicingPlanCode" : "...",
    "status" : "...",
    "orderProgress" : 12345,
    "progressDate" : 12345,
    "orderDate" : 12345,
    "deliveryDate" : 12345,
    "customerServiceBegin" : 12345,
    "customerServiceDuration" : 12345,
    "externalReference" : "...",
    "orderParentCode" : "...",
    "id" : 12345,
    "userAccountCode" : "...",
    "accessDto" : {
      "code" : "...",
      "subscription" : "...",
      "subscriptionValidityDate" : 12345,
      "startDate" : 12345,
      "endDate" : 12345,
      "customFields" : { },
      "disabled" : true
    },
    "orderLotCodes" : [ "...", "..." ],
    "customFields" : {
      "customField" : [ { }, { } ],
      "inheritedCustomField" : [ { }, { } ]
    },
    "code" : "...",
    "description" : "...",
    "discountPlanCode" : "...",
    "salesPersonName" : "..."
  } ],
  "paging" : {
    "fullTextFilter" : "...",
    "filters" : {
      "property1" : { },
      "property2" : { }
    },
    "fields" : "...",
    "offset" : 12345,
    "limit" : 12345,
    "sortBy" : "...",
    "sortOrder" : "ASCENDING",
    "multiSortOrder" : "...",
    "totalNumberOfRecords" : 12345,
    "loadReferenceDepth" : 12345
  },
  "actionStatus" : {
    "status" : "SUCCESS",
    "errorCode" : { },
    "message" : "...",
    "entityId" : 12345,
    "entityCode" : "...",
    "nrAffected" : 12345,
    "json" : "..."
  }
}