From 6293e62cb42ab82857756b9d1a101483b0d221c2 Mon Sep 17 00:00:00 2001 From: trunglt251292 Date: Mon, 24 Oct 2022 10:41:18 +0700 Subject: [PATCH] [Update] Response warehouse --- model/warehouse_response.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/model/warehouse_response.go b/model/warehouse_response.go index 07969dc..b608c37 100644 --- a/model/warehouse_response.go +++ b/model/warehouse_response.go @@ -26,6 +26,13 @@ type WarehouseConfiguration struct { Delivery WarehouseDelivery `json:"delivery"` Other WarehouseOther `json:"other"` Food WarehouseFood `json:"food"` + AutoConfirmOrder WareOrderConfirm `json:"autoConfirmOrder"` +} + +// WareOrderConfirm ... +type WareOrderConfirm struct { + IsEnable bool `json:"isEnable"` + ConfirmDelayInSeconds int64 `json:"confirmDelayInSeconds"` } // WarehouseFood ...