| 74 | } |
| 75 | |
| 76 | type WorkspaceEvent struct { |
| 77 | Kind WorkspaceEventKind `json:"kind"` |
| 78 | WorkspaceID uuid.UUID `json:"workspace_id" format:"uuid"` |
| 79 | // AgentID is only set for WorkspaceEventKindAgent* events |
| 80 | // (excluding AgentTimeout) |
| 81 | AgentID *uuid.UUID `json:"agent_id,omitempty" format:"uuid"` |
| 82 | } |
| 83 | |
| 84 | type WorkspaceEventKind string |
| 85 |
nothing calls this directly
no outgoing calls
no test coverage detected