Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d7bcb71acf | |||
| 6055673a34 |
@@ -36,6 +36,16 @@ type AddProductToBasketResponseDTO struct {
|
||||
BasketID string `json:"basket_id"`
|
||||
}
|
||||
|
||||
type RemoveFromBasketRequestDTO struct {
|
||||
BasketID string `json:"basket_id"`
|
||||
ProductID string `json:"product_id"`
|
||||
Quantity int `json:"quantity"`
|
||||
}
|
||||
|
||||
type RemoveFromBasketResponseDTO struct {
|
||||
BasketID string `json:"basket_id"`
|
||||
}
|
||||
|
||||
type BasketCheckoutRequestDTO struct {
|
||||
BasketID string `json:"basket_id"`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user