@adcp/sdk API Reference - v10.0.1
    Preparing search index...

    Interface RateLimitTripResponseSnapshot

    interface RateLimitTripResponseSnapshot {
        success: boolean;
        data?: unknown;
        error?: Pick<
            AdcpErrorInfo,
            | "message"
            | "code"
            | "field"
            | "suggestion"
            | "retry_after"
            | "details"
            | "recovery",
        >;
        error_message?: string;
        adcp_error?: AdcpErrorInfo;
    }
    Index

    Properties

    success: boolean
    data?: unknown
    error?: Pick<
        AdcpErrorInfo,
        | "message"
        | "code"
        | "field"
        | "suggestion"
        | "retry_after"
        | "details"
        | "recovery",
    >

    Structured AdCP error when one was present; otherwise omitted.

    error_message?: string

    Original TaskResult.error string, retained for diagnostics.

    adcp_error?: AdcpErrorInfo