This commit is contained in:
Piotr Biernat 2022-12-20 11:22:24 +01:00
parent 9fc3ec9350
commit 1e8a075d5d

View File

@ -5,6 +5,7 @@ type AddProductToBasketRequest struct {
} }
type AddProductToBasketResponse struct { type AddProductToBasketResponse struct {
ProductID int `json:"product_id"`
BasketID string `json:"basket_id"` BasketID string `json:"basket_id"`
} }