interface RequestApiOptions {
    allowedStatusErrors?: number[];
    bodyMode?: BodyMode;
    cookies?: Record<string, string>;
    data?: any;
    headers?: Record<string, string>;
    method?: HttpMethod;
    query?: Record<string, any>;
    retries?: number;
    retryDelay?: number;
}

Hierarchy (View Summary)

Properties

allowedStatusErrors?: number[]
bodyMode?: BodyMode
cookies?: Record<string, string>
data?: any
headers?: Record<string, string>
method?: HttpMethod
query?: Record<string, any>
retries?: number
retryDelay?: number