GetQuoteOfferDtoResponse Data Type

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

Implemented Interfaces
Serializable
Properties
name data type description
quoteOfferDto QuoteOfferDTO Quote data
actionStatus ActionStatus The status response of the web service response.

Example

{
  "quoteOfferDto" : {
    "id" : 12345,
    "auditableField" : [ {
      "entityClass" : "...",
      "fieldName" : "...",
      "id" : 12345,
      "changeOrigin" : "...",
      "auditableField" : [ { }, { } ],
      "originName" : "...",
      "code" : "...",
      "previousState" : "...",
      "currentState" : "...",
      "description" : "...",
      "created" : "...",
      "updatedCode" : "...",
      "actor" : "..."
    }, {
      "entityClass" : "...",
      "fieldName" : "...",
      "id" : 12345,
      "changeOrigin" : "...",
      "auditableField" : [ { }, { } ],
      "originName" : "...",
      "code" : "...",
      "previousState" : "...",
      "currentState" : "...",
      "description" : "...",
      "created" : "...",
      "updatedCode" : "...",
      "actor" : "..."
    } ],
    "code" : "...",
    "description" : "...",
    "updatedCode" : "...",
    "quoteOfferId" : 12345,
    "quoteCode" : "...",
    "quoteVersion" : 12345,
    "quoteLotCode" : "...",
    "offerId" : 12345,
    "offerCode" : "...",
    "billableAccountCode" : "...",
    "contractCode" : "...",
    "products" : [ {
      "quoteProductId" : 12345,
      "quoteCode" : "...",
      "productCode" : "...",
      "quoteVersion" : 12345,
      "productVersion" : 12345,
      "quantity" : 12345.0,
      "discountPlanCode" : "...",
      "productAttributes" : [ { }, { } ],
      "accountingArticlePrices" : [ { }, { } ],
      "customFields" : { },
      "deliveryDate" : 12345,
      "terminationDate" : 12345,
      "terminationReasonCode" : "...",
      "actionType" : "SUSPEND"
    }, {
      "quoteProductId" : 12345,
      "quoteCode" : "...",
      "productCode" : "...",
      "quoteVersion" : 12345,
      "productVersion" : 12345,
      "quantity" : 12345.0,
      "discountPlanCode" : "...",
      "productAttributes" : [ { }, { } ],
      "accountingArticlePrices" : [ { }, { } ],
      "customFields" : { },
      "deliveryDate" : 12345,
      "terminationDate" : 12345,
      "terminationReasonCode" : "...",
      "actionType" : "ACTIVATE"
    } ],
    "offerAttributes" : [ {
      "quoteAttributeId" : 12345,
      "quoteAttributeType" : "...",
      "quoteAttributeCode" : "...",
      "linkedQuoteAttribute" : [ { }, { } ],
      "stringValue" : "...",
      "doubleValue" : 12345.0,
      "dateValue" : 12345,
      "customFields" : { },
      "booleanValue" : true
    }, {
      "quoteAttributeId" : 12345,
      "quoteAttributeType" : "...",
      "quoteAttributeCode" : "...",
      "linkedQuoteAttribute" : [ { }, { } ],
      "stringValue" : "...",
      "doubleValue" : 12345.0,
      "dateValue" : 12345,
      "customFields" : { },
      "booleanValue" : true
    } ],
    "customFields" : {
      "customField" : [ { }, { } ],
      "inheritedCustomField" : [ { }, { } ]
    },
    "discountPlanCode" : "...",
    "prices" : [ {
      "taxRate" : 12345.0,
      "unitPriceAmountWithoutTax" : 12345.0,
      "prices" : [ { }, { } ]
    }, {
      "taxRate" : 12345.0,
      "unitPriceAmountWithoutTax" : 12345.0,
      "prices" : [ { }, { } ]
    } ],
    "sequence" : 12345,
    "deliveryDate" : 12345,
    "userAccountCode" : "...",
    "quoteLineType" : "AMEND",
    "subscriptionCode" : "..."
  },
  "actionStatus" : {
    "status" : "WARNING",
    "errorCode" : { },
    "message" : "...",
    "entityId" : 12345,
    "entityCode" : "...",
    "nrAffected" : 12345,
    "json" : "..."
  }
}