Vana SDK - v2.2.2
    Preparing search index...

    Interface RequestOptions

    Configures individual HTTP request behavior.

    Allows per-request overrides of client defaults including headers, timeout, and resilience features. Use to customize specific requests without affecting global configuration.

    interface RequestOptions {
        method?: HttpMethod;
        headers?: Record<string, string>;
        params?: Record<string, unknown>;
        timeout?: number;
        skipRetry?: boolean;
        skipRateLimit?: boolean;
    }
    Index

    Properties

    method?: HttpMethod

    HTTP method

    headers?: Record<string, string>

    Request headers

    params?: Record<string, unknown>

    Query parameters

    timeout?: number

    Request timeout

    skipRetry?: boolean

    Skip retry for this request

    skipRateLimit?: boolean

    Skip rate limiting for this request