CollectInStoreFulfillment
Type: schema
TypeScript Definition
typescript
CollectInStoreFulfillment: {{
/** @constant */
fulfillment_type: "collect-in-store";
pickup_location_id: string;
};
/** Customer */
}OpenAPI Schema
json
{
"type": "object",
"properties": {
"fulfillment_type": {
"type": "string",
"const": "collect-in-store"
},
"pickup_location_id": {
"type": "string"
}
},
"required": [
"fulfillment_type",
"pickup_location_id"
],
"title": "CollectInStoreFulfillment"
}Auto-generated from OpenAPI spec and TypeScript definitions