Skip to main content

Price

No description

type Price {
regularPrice: MonetaryValue
salePrice: MonetaryValue
recommendedPrice: MonetaryValue
appliedCampaign: ApplicableCampaign
}

Fields

regularPrice ● MonetaryValue

The regular/ordinary price of the product/service

salePrice ● MonetaryValue

The sale price of the product/service

recommendedPrice ● MonetaryValue

Recommended price of the product/service

appliedCampaign ● ApplicableCampaign

Contains campaign information if a campaign was applied to the price

Example

{
"regularPrice": {
"currency": {
"code": "USD",
"rate": 11.355,
"prefix": "$"
},
"tax": {}
},
"appliedCampaign": {
"info": {
"description": [
{
"language": "EN",
"value": "String"
}
],
"timeLimit": {
"from": "2024-05-03T11:52:33Z"
}
}
}
}