| 1 | package main |
| 2 | |
| 3 | import "reasonix/internal/session" |
| 4 | |
| 5 | type WorkspaceSessionSummary struct { |
| 6 | Ref session.SessionRef `json:"ref"` |
| 7 | WorkspaceID string `json:"workspaceId"` |
| 8 | Title string `json:"title"` |
| 9 | Preview string `json:"preview"` |
| 10 | Turns int `json:"turns"` |
| 11 | CreatedAt int64 `json:"createdAt"` |
| 12 | UpdatedAt int64 `json:"updatedAt"` |
| 13 | ResultSequence uint64 `json:"resultSequence,omitempty"` |
| 14 | ModelRef string `json:"modelRef,omitempty"` |
| 15 | ParentSessionID string `json:"parentSessionId,omitempty"` |
| 16 | Origin string `json:"origin,omitempty"` |
| 17 | Blank bool `json:"blank"` |
| 18 | Archived bool `json:"archived"` |
| 19 | Running bool `json:"running"` |
| 20 | MetadataStatus string `json:"metadataStatus"` |
| 21 | Health string `json:"health"` |
| 22 | } |
| 23 |