Properties of a HttpTask.

interface IHttpTask {
    body?: string;
    headers?: IHeader[];
    method?: OracleJob.HttpTask.Method;
    url?: string;
}

Implemented by

Properties

body?: string

A stringified body (if any) to add to this HttpTask.

headers?: IHeader[]

A list of headers to add to this HttpTask.

The type of HTTP request to make.

url?: string

A string containing the URL to direct this HTTP request to.

Generated using TypeDoc