Interface AppActionCallErrorProps

interface AppActionCallErrorProps {
    details?: Record<string, unknown>;
    message: string;
    statusCode?: number;
    sys: {
        id: string;
        type: "Error";
    };
}

Properties

details?: Record<string, unknown>
message: string
statusCode?: number
sys: {
    id: string;
    type: "Error";
}