DeliveryFulfillment
Type: schema
TypeScript Definition
typescript
DeliveryFulfillment: {{
/**
* @description discriminator enum property added by openapi-typescript
* @enum {string}
*/
fulfillment_type: "delivery";
/** @enum {string} */
preference_type?: $Read<"user" | "auto">;
shipping_provider_id: string | null;
shipping_provider_name?: $Read<string | null>;
courier_company_id?: string | null;
courier_company_name?: $Read<string | null>;
};
/** FulfillmentItem */
}OpenAPI Schema
json
{
"type": "object",
"properties": {
"fulfillment_type": {
"type": "string",
"const": "delivery"
},
"preference_type": {
"type": "string",
"enum": [
"user",
"auto"
],
"readOnly": true
},
"shipping_provider_id": {
"type": [
"string",
"null"
]
},
"shipping_provider_name": {
"type": [
"string",
"null"
],
"readOnly": true
},
"courier_company_id": {
"type": [
"string",
"null"
]
},
"courier_company_name": {
"type": [
"string",
"null"
],
"readOnly": true
}
},
"required": [
"fulfillment_type",
"shipping_provider_id"
],
"title": "DeliveryFulfillment"
}Auto-generated from OpenAPI spec and TypeScript definitions