Interface BusEventFeedback

This event is fired when the user interacts with the feedback controls on a message. This includes both the feedback buttons (thumbs up/down) as well as the details popup where the user can submit additional information.

interface BusEventFeedback {
    categories?: string[];
    interactionType: FeedbackInteractionType;
    isPositive: boolean;
    message: MessageResponse;
    messageItem: GenericItem;
    text?: string;
    type: BusEventType;
}

Hierarchy (View Summary, Expand)

Properties

categories?: string[]

When submitting feedback details, this is the list of categories the user selected (if visible).

interactionType: FeedbackInteractionType

The type of interaction the user had with the feedback.

isPositive: boolean

Indicates if the user is providing positive or negative feedback.

The message for which feedback was provided.

messageItem: GenericItem

The message item for which feedback was provided.

text?: string

When submitting feedback details, this is the text the user entered into the text field (if visible).

The type of this event.

MMNEPVFCICPMFPCPTTAAATR