ping-identity
    Preparing search index...

    Type Alias JourneyChoiceCallback

    JourneyChoiceCallback: JourneyCallbackBase & {
        choices: string[];
        defaultChoice: number;
        selectedIndex?: number;
        type: "ChoiceCallback";
    }

    ChoiceCallback payload with typed named fields.

    Type Declaration

    • choices: string[]

      Available choices provided by the server.

    • defaultChoice: number

      Zero-based index of the server-suggested default choice.

    • OptionalselectedIndex?: number

      Currently selected choice index.

    • type: "ChoiceCallback"