interface RequestObject {
    auth?: null | Auth;
    body?: null | RequestBodyObject;
    certificate?: CertificateObject;
    description?: Description;
    header?: string | HeaderObject[];
    method?: string;
    proxy?: ProxyConfig;
    url?: UrlObject;
    [x: string]: unknown;
}

Indexable

[x: string]: unknown

Properties

auth?: null | Auth
body?: null | RequestBodyObject
certificate?: CertificateObject
description?: Description
header?: string | HeaderObject[]
method?: string
proxy?: ProxyConfig
url?: UrlObject