Interface ChatResultFeedback

Represents user feedback for a result.

Stubbed

interface ChatResultFeedback {
    kind: ChatResultFeedbackKind;
    result: ChatResult;
}

Properties

Properties

The kind of feedback that was received.

result: ChatResult

The ChatResult for which the user is providing feedback. This object has the same properties as the result returned from the participant callback, including metadata, but is not the same instance.