CollectInStoreFulfillment
Type: schema
TypeScript Definition
typescript
CollectInStoreFulfillment: {{
/**
* @description discriminator enum property added by openapi-typescript
* @enum {string}
*/
fulfillment_type: "collect-in-store";
/** @enum {string} */
readonly preference_type?: "user" | "auto";
pickup_location_id: string;
readonly pickup_location_name?: string;
};
/**
* ColorAttribute
* @description Attribute for colors
*/
}OpenAPI Schema
json
{
"title": "CollectInStoreFulfillment",
"type": "object",
"externalDocs": {
"url": "https://llm-docs.commercengine.io/storefront/schemas/CollectInStoreFulfillment",
"description": "API reference for the CollectInStoreFulfillment schema"
},
"required": [
"fulfillment_type",
"pickup_location_id"
],
"properties": {
"fulfillment_type": {
"type": "string",
"const": "collect-in-store"
},
"preference_type": {
"type": "string",
"enum": [
"user",
"auto"
],
"readOnly": true
},
"pickup_location_id": {
"type": "string"
},
"pickup_location_name": {
"type": "string",
"readOnly": true
}
}
}Auto-generated from OpenAPI spec and TypeScript definitions