FixedPriceCouponPromotion
Type: schema
TypeScript Definition
typescript
FixedPriceCouponPromotion: {components["schemas"]["CouponPromotionCommonDetail"] & {
details: components["schemas"]["FixedPriceRule"]
}Component References
| Reference | Resolves To |
|---|---|
components["schemas"]["CouponPromotionCommonDetail"] | CouponPromotionCommonDetail |
components["schemas"]["FixedPriceRule"] | FixedPriceRule |
OpenAPI Schema
json
{
"title": "FixedPriceCouponPromotion",
"externalDocs": {
"url": "https://llm-docs.commercengine.io/storefront/schemas/FixedPriceCouponPromotion",
"description": "API reference for the FixedPriceCouponPromotion schema"
},
"allOf": [
{
"$ref": "#/components/schemas/CouponPromotionCommonDetail"
},
{
"type": "object",
"required": [
"details",
"applies_to_product"
],
"properties": {
"details": {
"$ref": "#/components/schemas/FixedPriceRule"
},
"applies_to_product": {
"enum": [
"product"
]
}
}
}
]
}Auto-generated from OpenAPI spec and TypeScript definitions