Compare commits

...

2 Commits

Author SHA1 Message Date
2f71ff408d basket update 2022-12-22 17:33:58 +01:00
0c99855748 basket update 2022-12-22 17:31:32 +01:00

View File

@@ -11,6 +11,8 @@ type GetBasketResponse struct {
State string `json:"state"`
CreatedAt time.Duration `json:"created_at"`
UpdatedAt time.Duration `json:"updated_at"`
Error string `json:"error"`
}
type GetBasketItemsRequest struct {
@@ -24,6 +26,8 @@ type GetBasketItemsResponse struct {
Price float64 `json:"price"`
CreatedAt time.Duration `json:"created_at"`
UpdatedAt time.Duration `json:"updated_at"`
Error string `json:"error"`
}
type BasketCheckoutRequest struct {