10 lines
157 B
Go
10 lines
157 B
Go
package http
|
|
|
|
type BasketCheckoutRequest struct {
|
|
BasketID string `json:"basket_id"`
|
|
}
|
|
|
|
type BasketCheckoutResponse struct {
|
|
ID string `json:"order_id"`
|
|
}
|