Compare commits

..

No commits in common. "7c308c725cf7658050a9df9a9511ce31a5b4ce42" and "46cccf22e2f307726f9416fbf5e2a3f75e405733" have entirely different histories.

1 changed files with 7 additions and 4 deletions

View File

@ -64,10 +64,13 @@ type ListInventoriesReq struct {
// WebhookDataUpdateInventory ... // WebhookDataUpdateInventory ...
type WebhookDataUpdateInventory struct { type WebhookDataUpdateInventory struct {
Sku string `json:"sku"` Sku string `json:"sku"`
AvailableQuantity int `json:"available_quantity"` PartnerSku string `json:"partner_sku"`
PickupLocationCode string `json:"pickup_location_code"` WarehouseCode string `json:"warehouse_code"`
UpdatedAt time.Time `json:"updated_at"` AvailableQuantity int `json:"available_quantity"`
CommittedQuantity int `json:"committed_quantity"`
TotalQuantity int `json:"total_quantity"`
UpdatedAt string `json:"updated_at"`
} }
// WebhookDataUpdateOrderStatus ... // WebhookDataUpdateOrderStatus ...