(count int, singular, plural string)
| 375 | |
| 376 | // Moved details feature rename/location changes. May be nil if the highlight |
| 377 | // type is not SummaryHighlightTypeMoved or if unmarshaled from historical/partial event payloads. |
| 378 | Moved *Change[FeatureRef] `json:"moved,omitempty"` |
| 379 | |
| 380 | // Split details feature split changes into sub-features. May be nil if the highlight |
| 381 | // type is not SummaryHighlightTypeSplit or if unmarshaled from historical/partial event payloads. |
| 382 | Split *SplitChange `json:"split,omitempty"` |
| 383 | } |
| 384 | |
| 385 | // SummaryVisitor defines the contract for consuming immutable Event Summaries. |
| 386 | // Unlike state blobs which are migrated to the latest schema, summaries are |
no outgoing calls
no test coverage detected