GetPricePlanMatrixColumnResponseDto Data Type

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

Implemented Interfaces
Serializable
Properties
name data type description
pricePlanMatrixColumnDto PricePlanMatrixColumnDto The price plan.
actionStatus ActionStatus The status response of the web service response.

Example

{
  "pricePlanMatrixColumnDto" : {
    "code" : "...",
    "pricePlanMatrixCode" : "...",
    "pricePlanMatrixVersion" : 12345,
    "productCode" : "...",
    "offerTemplateCode" : "...",
    "attributeCode" : "...",
    "position" : 12345,
    "type" : "Double",
    "elValue" : "...",
    "isRange" : true
  },
  "actionStatus" : {
    "status" : "FAIL",
    "errorCode" : { },
    "message" : "...",
    "entityId" : 12345,
    "entityCode" : "...",
    "nrAffected" : 12345,
    "json" : "..."
  }
}