interface FailureNode {
    cache: { key: string };
    client: { status: "failure" };
    error: DaVinciError;
    httpStatus: number;
    server:
        | null
        | {
            _links?: Links;
            eventName?: string;
            href?: string;
            id?: string;
            interactionId?: string;
            interactionToken?: string;
            status: "failure";
        };
    status: "failure";
}

Properties

cache: { key: string }
client: { status: "failure" }
httpStatus: number
server:
    | null
    | {
        _links?: Links;
        eventName?: string;
        href?: string;
        id?: string;
        interactionId?: string;
        interactionToken?: string;
        status: "failure";
    }
status: "failure"