| 226 | } |
| 227 | |
| 228 | type LayoutState struct { |
| 229 | OID string `json:"oid"` |
| 230 | Version int `json:"version"` |
| 231 | RootNode any `json:"rootnode,omitempty"` |
| 232 | MagnifiedNodeId string `json:"magnifiednodeid,omitempty"` |
| 233 | FocusedNodeId string `json:"focusednodeid,omitempty"` |
| 234 | LeafOrder *[]LeafOrderEntry `json:"leaforder,omitempty"` |
| 235 | PendingBackendActions *[]LayoutActionData `json:"pendingbackendactions,omitempty"` |
| 236 | Meta MetaMapType `json:"meta,omitempty"` |
| 237 | } |
| 238 | |
| 239 | func (*LayoutState) GetOType() string { |
| 240 | return OType_LayoutState |
nothing calls this directly
no outgoing calls
no test coverage detected