CheckoutResult represents the result of a checkout operation
| 84 | |
| 85 | // CheckoutResult represents the result of a checkout operation |
| 86 | type CheckoutResult struct { |
| 87 | Success bool `json:"success"` |
| 88 | OrderID string `json:"order_id,omitempty"` |
| 89 | Total float64 `json:"total"` |
| 90 | Message string `json:"message"` |
| 91 | Timestamp time.Time `json:"timestamp"` |
| 92 | } |
| 93 | |
| 94 | // AgentTestResult represents the result of testing the agent loop |
| 95 | type AgentTestResult struct { |
nothing calls this directly
no outgoing calls
no test coverage detected