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