interface RequestBodyObject {
    disabled?: boolean;
    file?: {
        content?: string;
        src?: null | string;
    };
    formdata?: FormParameter[];
    graphql?: Record<string, unknown>;
    mode?: string;
    options?: Record<string, unknown>;
    raw?: string;
    urlencoded?: UrlEncodedParameter[];
    [x: string]: unknown;
}

Indexable

[x: string]: unknown

Properties

disabled?: boolean
file?: {
    content?: string;
    src?: null | string;
}

Type declaration

  • Optional content?: string
  • Optional src?: null | string
formdata?: FormParameter[]
graphql?: Record<string, unknown>
mode?: string
options?: Record<string, unknown>
raw?: string
urlencoded?: UrlEncodedParameter[]