Skip to content

CartBasedFulfillmentOption

Type: schema

TypeScript Definition

typescript
CartBasedFulfillmentOption: {{
            cart_id: string;
            /** @enum {string} */
            fulfillment_type?: "delivery" | "collect-in-store";
        };
        /**
         * CartItem
         * @description This Cart Item model captures the attributes of a cart item, including product details, pricing information, subscription details, and other relevant information related to Cart Item.
         */
}

OpenAPI Schema

json
{
  "title": "CartBasedFulfillmentOption",
  "type": "object",
  "externalDocs": {
    "url": "https://llm-docs.commercengine.io/storefront/schemas/CartBasedFulfillmentOption",
    "description": "API reference for the CartBasedFulfillmentOption schema"
  },
  "required": [
    "cart_id"
  ],
  "properties": {
    "cart_id": {
      "type": "string"
    },
    "fulfillment_type": {
      "type": "string",
      "enum": [
        "delivery",
        "collect-in-store"
      ]
    }
  }
}

Auto-generated from OpenAPI spec and TypeScript definitions

Last updated: