ProductOfferingPrice Data Type

Implemented Interfaces
Serializable
Properties
name data type description
name string
validFor TimeRange
recurringChargePeriod string
description string
priceType ProductOfferingPriceType
unitOfMeasure string
price Price
productOfferPriceAlteration ProductOfferPriceAlteration

Example

{
  "name" : "...",
  "validFor" : {
    "startDateTime" : 12345,
    "endDateTime" : 12345
  },
  "recurringChargePeriod" : "...",
  "description" : "...",
  "priceType" : "ONE_TIME",
  "unitOfMeasure" : "...",
  "price" : {
    "taxRate" : "...",
    "currencyCode" : "...",
    "percentage" : 12345.0,
    "taxIncludedAmount" : "...",
    "dutyFreeAmount" : "..."
  },
  "productOfferPriceAlteration" : {
    "name" : "...",
    "priceType" : "ONE_TIME",
    "unitOfMeasure" : "...",
    "price" : {
      "percentage" : "..."
    },
    "recurringChargePeriod" : "...",
    "priceCondition" : "...",
    "description" : "...",
    "validFor" : {
      "startDateTime" : 12345,
      "endDateTime" : 12345
    }
  }
}