Interface SuggestionsDisplayedEvent

Tracking event fired when AI-powered suggestions are displayed to the user.

  • type — discriminant: 'SuggestionsDisplayed'
  • reportType — reverse-DNS report identifier (e.g. 'net.leanix.matrix')
  • hasSuggestions — whether suggestions are actually visible (true) or the panel is shown but empty (false)
  • baseFactSheetType — primary Fact Sheet type rendered in the report
interface SuggestionsDisplayedEvent {
    baseFactSheetType?: string;
    hasSuggestions: boolean;
    reportType: string;
    type: "SuggestionsDisplayed";
}

Properties

baseFactSheetType?: string
hasSuggestions: boolean
reportType: string
type: "SuggestionsDisplayed"

Generated using TypeDoc