Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| pickupPointId | string | |
| deliveryChannel | string | |
| price | integer | |
| shippingEstimate | string | |
| lockTtl | string | |
| deliveryWindows | array | |
| availableDeliveryWindows | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/LogisticsInfoSLA",
"title": "LogisticsInfoSLA",
"type": "object",
"properties": {
"id": {
"type": "string",
"nullable": true
},
"pickupPointId": {
"type": "string",
"nullable": true
},
"deliveryChannel": {
"type": "string",
"nullable": true
},
"price": {
"type": "integer",
"format": "int32"
},
"shippingEstimate": {
"type": "string",
"nullable": true
},
"lockTtl": {
"type": "string",
"nullable": true
},
"deliveryWindows": {
"type": "array",
"items": {
"$ref": "#/components/schemas/LogisticsInfoDeliveryWindow"
},
"nullable": true
},
"availableDeliveryWindows": {
"type": "array",
"items": {
"$ref": "#/components/schemas/LogisticsInfoDeliveryWindow"
},
"nullable": true
}
},
"additionalProperties": false
}