Heroku AI SDK Provider - v0.4.3
    Preparing search index...

    Interface HerokuErrorResponse

    Base interface for all Heroku API error responses

    interface HerokuErrorResponse {
        error?: {
            message?: string;
            type?: string;
            code?: string;
            details?: Record<string, unknown>;
        };
        message?: string;
        code?: string;
        status?: number;
    }
    Index

    Properties

    error?: {
        message?: string;
        type?: string;
        code?: string;
        details?: Record<string, unknown>;
    }
    message?: string
    code?: string
    status?: number