update warehouse config #154
|
@ -65,6 +65,14 @@ type WarehouseOrder struct {
|
|||
PaymentMethod WarehousePaymentMethod `json:"paymentMethod"`
|
||||
IsLimitNumberOfPurchases bool `json:"isLimitNumberOfPurchases"`
|
||||
LimitNumberOfPurchases int64 `json:"limitNumberOfPurchases"`
|
||||
NotifyOnNewOrder WarehouseConfigNotifyOnNewOrder `json:"notifyOnNewOrder"`
|
||||
}
|
||||
|
||||
// WarehouseConfigNotifyOnNewOrder ...
|
||||
type WarehouseConfigNotifyOnNewOrder struct {
|
||||
Enable bool `bson:"enable" json:"enable"`
|
||||
Channel string `bson:"channel" json:"channel"`
|
||||
RoomID string `bson:"roomId" json:"roomId"`
|
||||
}
|
||||
|
||||
// WarehousePaymentMethod ...
|
||||
|
|
Loading…
Reference in New Issue