ping-identity
    Preparing search index...

    Type Alias JourneyConfirmationField

    JourneyConfirmationField: JourneyBaseField & {
        defaultOption?: string;
        messageType?: string;
        optionType?: string;
        selectedIndex?: number;
        type: "ConfirmationCallback";
    }

    Normalized field for a ConfirmationCallback with typed named fields.

    Type Declaration

    • OptionaldefaultOption?: string

      Default option label.

    • OptionalmessageType?: string

      Message type discriminator emitted by native (e.g. INFORMATION, WARNING, ERROR).

      Use this to apply appropriate styling or severity indicators to the dialog message.

    • OptionaloptionType?: string

      Option type discriminator emitted by native (e.g. YES_NO_OPTION, YES_NO_CANCEL_OPTION).

      Use this to determine which button set to render for the confirmation dialog.

    • OptionalselectedIndex?: number

      Currently selected option index.

      Normalized option labels are available via the inherited options field (typed as JourneyFieldOption[]).

    • type: "ConfirmationCallback"