| 1 | package eventwire |
| 2 | |
| 3 | type SessionContextSectionDiagnostics struct { |
| 4 | Digest string `json:"digest,omitempty"` |
| 5 | Chars int `json:"chars,omitempty"` |
| 6 | } |
| 7 | |
| 8 | type SessionContextDiagnostics struct { |
| 9 | Version int `json:"version"` |
| 10 | Digest string `json:"digest"` |
| 11 | TargetRole string `json:"targetRole"` |
| 12 | Reasons []string `json:"reasons,omitempty"` |
| 13 | Environment SessionContextSectionDiagnostics `json:"environment"` |
| 14 | Workspace SessionContextSectionDiagnostics `json:"workspace"` |
| 15 | BackgroundMemory SessionContextSectionDiagnostics `json:"backgroundMemory"` |
| 16 | SkillsCatalog SessionContextSectionDiagnostics `json:"skillsCatalog"` |
| 17 | } |
| 18 |