ShipmentList
Type: schema
TypeScript Definition
typescript
ShipmentList: {{
order_number?: string;
sales_channel?: {
id?: string;
name?: string;
type?: string;
};
} & components["schemas"]["ShipmentInfo"];
/** ShipmentPackaging */
}Component References
| Reference | Resolves To |
|---|---|
components["schemas"]["ShipmentInfo"] | ShipmentInfo |
OpenAPI Schema
json
{
"allOf": [
{
"type": "object",
"properties": {
"order_number": {
"type": "string"
},
"sales_channel": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
}
}
}
}
},
{
"$ref": "#/components/schemas/ShipmentInfo"
}
],
"title": "ShipmentList",
"x-tags": [
"Shipping"
]
}Auto-generated from OpenAPI spec and TypeScript definitions