GetOrderOfferDtoResponse Data Type

All the Opencell API web service response must extend this class.

Implemented Interfaces
Serializable
Properties
name data type description
orderOfferDto OrderOfferDto order offer data
actionStatus ActionStatus The status response of the web service response.

Example

{
  "orderOfferDto" : {
    "commercialOrderId" : 12345,
    "offerTemplateCode" : "...",
    "orderOfferId" : 12345,
    "orderProducts" : [ {
      "orderProductId" : 12345,
      "commercialOrderId" : 12345,
      "orderLotCode" : "...",
      "orderOfferId" : 12345,
      "discountPlanCode" : "...",
      "productVersion" : 12345,
      "productCode" : "...",
      "quantity" : 12345.0,
      "deliveryDate" : 12345,
      "terminationDate" : 12345,
      "terminationReasonCode" : "...",
      "actionType" : "SUSPEND",
      "status" : "INACTIVE",
      "orderAttributes" : [ { }, { } ]
    }, {
      "orderProductId" : 12345,
      "commercialOrderId" : 12345,
      "orderLotCode" : "...",
      "orderOfferId" : 12345,
      "discountPlanCode" : "...",
      "productVersion" : 12345,
      "productCode" : "...",
      "quantity" : 12345.0,
      "deliveryDate" : 12345,
      "terminationDate" : 12345,
      "terminationReasonCode" : "...",
      "actionType" : "MODIFY",
      "status" : "PENDING",
      "orderAttributes" : [ { }, { } ]
    } ],
    "orderAttributes" : [ {
      "attributeCode" : "...",
      "parentAttributeValueId" : 12345,
      "commercialOrderId" : 12345,
      "assignedAttributeValueIds" : [ 12345, 12345 ],
      "orderAttributeCode" : "...",
      "customFieldDto" : { },
      "attributeType" : "INFO",
      "orderAttributeId" : 12345,
      "orderLotCode" : "...",
      "orderProductId" : 12345,
      "orderOfferId" : 12345,
      "accessPoint" : "...",
      "linkedOrderAttribute" : [ { }, { } ],
      "stringValue" : "...",
      "doubleValue" : 12345.0,
      "dateValue" : 12345,
      "booleanValue" : true
    }, {
      "attributeCode" : "...",
      "parentAttributeValueId" : 12345,
      "commercialOrderId" : 12345,
      "assignedAttributeValueIds" : [ 12345, 12345 ],
      "orderAttributeCode" : "...",
      "customFieldDto" : { },
      "attributeType" : "NUMERIC",
      "orderAttributeId" : 12345,
      "orderLotCode" : "...",
      "orderProductId" : 12345,
      "orderOfferId" : 12345,
      "accessPoint" : "...",
      "linkedOrderAttribute" : [ { }, { } ],
      "stringValue" : "...",
      "doubleValue" : 12345.0,
      "dateValue" : 12345,
      "booleanValue" : true
    } ],
    "discountPlanCode" : "...",
    "deliveryDate" : 12345,
    "userAccountCode" : "...",
    "orderLineType" : "CREATE",
    "subscriptionCode" : "...",
    "terminationDate" : 12345,
    "terminationReasonCode" : "..."
  },
  "actionStatus" : {
    "status" : "SUCCESS",
    "errorCode" : { },
    "message" : "...",
    "entityId" : 12345,
    "entityCode" : "...",
    "nrAffected" : 12345,
    "json" : "..."
  }
}