18 lines
339 B
Go
18 lines
339 B
Go
package http
|
|
|
|
type AddProductToBasketRequest struct {
|
|
ProductID int `json:"product_id"`
|
|
}
|
|
|
|
type AddProductToBasketResponse struct {
|
|
BasketID string `json:"basket_id"`
|
|
}
|
|
|
|
type RemoveProductFromBasketRequest struct {
|
|
ProductID int `json:"product_id"`
|
|
}
|
|
|
|
type RemoveProductFromBasketResponse struct {
|
|
BasketID string `json:"basket_id"`
|
|
}
|