Vana SDK - v0.1.0
    Preparing search index...

    Interface RequestOptions

    Request options for API calls

    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