api-entities/http/basket.go

10 lines
157 B
Go
Raw Normal View History

2022-12-18 20:51:26 +01:00
package http
type BasketCheckoutRequest struct {
BasketID string `json:"basket_id"`
}
type BasketCheckoutResponse struct {
ID string `json:"order_id"`
}