Documentation - v1.2.0-alpha.3
    Preparing search index...

    Result returned by a prompts recognizer function.

    interface PromptRecognizerResult<T> {
        succeeded: boolean;
        value?: T;
    }

    Type Parameters

    • T

      Type of value being recognized.

    Index

    Properties

    Properties

    succeeded: boolean

    If true the user's utterance was successfully recognized and value contains the recognized result.

    value?: T

    Value that was recognized if succeeded is true.