interface ErrorNode {
    cache: { key: string };
    client: {
        action: string;
        collectors: Collectors[];
        description?: string;
        name?: string;
        status: "error";
    };
    error: DaVinciError;
    httpStatus: number;
    server: | null
    | {
        _links?: Links;
        eventName?: string;
        id?: string;
        interactionId?: string;
        interactionToken?: string;
        status: "error";
    };
    status: "error";
}

Properties

cache: { key: string }
client: {
    action: string;
    collectors: Collectors[];
    description?: string;
    name?: string;
    status: "error";
}
httpStatus: number
server:
    | null
    | {
        _links?: Links;
        eventName?: string;
        id?: string;
        interactionId?: string;
        interactionToken?: string;
        status: "error";
    }
status: "error"