api-entities/http/basket.go
2022-12-18 21:10:32 +01:00

10 lines
157 B
Go

package http
type BasketCheckoutRequest struct {
BasketID string `json:"basket_id"`
}
type BasketCheckoutResponse struct {
ID string `json:"order_id"`
}