CommercialRuleItemDTO Data Type

A base class for all API DTO classes

Implemented Interfaces
Serializable
Properties
name data type description
operator OperatorEnum
ruleItemEl string
commercialRuleLines array of CommercialRuleLineDTO

Example

{
  "operator" : "OR",
  "ruleItemEl" : "...",
  "commercialRuleLines" : [ {
    "offerCode" : "...",
    "productCode" : "...",
    "productVersion" : 12345,
    "attributeCode" : "...",
    "groupedAttributeCode" : "...",
    "attributeValue" : "...",
    "groupedAttributeValue" : "...",
    "tagCode" : "...",
    "operator" : "CONTAINS"
  }, {
    "offerCode" : "...",
    "productCode" : "...",
    "productVersion" : 12345,
    "attributeCode" : "...",
    "groupedAttributeCode" : "...",
    "attributeValue" : "...",
    "groupedAttributeValue" : "...",
    "tagCode" : "...",
    "operator" : "LESS_THAN"
  } ]
}