ping-identity
    Preparing search index...

    Type Alias FailureNode

    Terminal failure node — flow encountered an unrecoverable error.

    type FailureNode = {
        cause?: string;
        message: string;
        type: "FailureNode";
    }
    Index

    Properties

    Properties

    cause?: string

    Underlying cause description, when the native SDK provides one.

    Parity with Journey's FailureNode.cause.

    message: string

    Human-readable failure message.

    type: "FailureNode"