Merge pull request 'move-config-suppliers' (#50) from move-config-suppliers into master

Reviewed-on: #50
This commit is contained in:
trunglam 2022-10-26 04:34:58 +00:00
commit f35d61e456
1 changed files with 15 additions and 8 deletions

View File

@ -26,6 +26,13 @@ type WarehouseConfiguration struct {
Delivery WarehouseDelivery `json:"delivery"`
Other WarehouseOther `json:"other"`
Food WarehouseFood `json:"food"`
AutoConfirmOrder WarehouseOrderConfirm `json:"autoConfirmOrder"`
}
// WarehouseOrderConfirm ...
type WarehouseOrderConfirm struct {
IsEnable bool `json:"isEnable"`
ConfirmDelayInSeconds int64 `json:"confirmDelayInSeconds"`
}
// WarehouseFood ...