ShipmentBox
Type: schema
TypeScript Definition
typescript
ShipmentBox: {{
box_name?: string;
box_length?: number;
box_width?: number;
box_height?: number;
box_weight?: number;
items_count?: number | null;
box_count?: number | null;
};
/** ShipmentDetail */
}OpenAPI Schema
json
{
"type": "object",
"properties": {
"box_name": {
"type": "string"
},
"box_length": {
"type": "number"
},
"box_width": {
"type": "number"
},
"box_height": {
"type": "number"
},
"box_weight": {
"type": "number"
},
"items_count": {
"type": [
"integer",
"null"
]
},
"box_count": {
"type": [
"integer",
"null"
]
}
},
"title": "ShipmentBox",
"x-tags": [
"Shipping"
]
}Auto-generated from OpenAPI spec and TypeScript definitions