api-entities/http/catalog.go
2022-12-20 16:07:56 +01:00

22 lines
483 B
Go

package http
type AddProductToBasketRequest struct {
ProductID int `json:"product_id"`
Quantity int `json:"quantity"`
}
type AddProductToBasketResponse struct {
ProductID int `json:"product_id"`
BasketID string `json:"basket_id"`
}
type RemoveProductFromBasketRequest struct {
ProductID int `json:"product_id"`
Quantity int `json:"quantity"`
}
type RemoveProductFromBasketResponse struct {
ProductID int `json:"product_id"`
BasketID string `json:"basket_id"`
}