CartBasedFulfillmentCheck
Type: schema
TypeScript Definition
typescript
CartBasedFulfillmentCheck: {{
/** @description delivery pincode, if null, the fulfillment type will be collect-in-store */
delivery_pincode: string | null;
cart_id: string;
/** @enum {string} */
fulfillment_type?: "delivery" | "collect-in-store";
};
/** CartBasedFulfillmentOption */
}OpenAPI Schema
json
{
"title": "CartBasedFulfillmentCheck",
"type": "object",
"externalDocs": {
"url": "https://llm-docs.commercengine.io/storefront/schemas/CartBasedFulfillmentCheck",
"description": "API reference for the CartBasedFulfillmentCheck schema"
},
"required": [
"delivery_pincode",
"cart_id"
],
"properties": {
"delivery_pincode": {
"description": "delivery pincode, if null, the fulfillment type will be collect-in-store",
"type": [
"string",
"null"
]
},
"cart_id": {
"type": "string"
},
"fulfillment_type": {
"type": "string",
"enum": [
"delivery",
"collect-in-store"
]
}
}
}Auto-generated from OpenAPI spec and TypeScript definitions