DeliveryFulfillment
Type: schema
TypeScript Definition
typescript
DeliveryFulfillment: {{
/** @constant */
fulfillment_type: "delivery";
shipping_provider_id?: string | null;
shipping_provider_name?: string | null;
courier_company_id?: string | null;
courier_company_name?: string | null;
};
/** FulfillmentItem */
}OpenAPI Schema
json
{
"type": "object",
"properties": {
"fulfillment_type": {
"type": "string",
"const": "delivery"
},
"shipping_provider_id": {
"type": [
"string",
"null"
]
},
"shipping_provider_name": {
"type": [
"string",
"null"
]
},
"courier_company_id": {
"type": [
"string",
"null"
]
},
"courier_company_name": {
"type": [
"string",
"null"
]
}
},
"required": [
"fulfillment_type"
],
"title": "DeliveryFulfillment"
}Auto-generated from OpenAPI spec and TypeScript definitions