Properties of a HttpTask.

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

Implemented by

Properties

body?: null | string

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

headers?: null | IHeader[]

A list of headers to add to this HttpTask.

method?: null | OracleJob.HttpTask.Method

The type of HTTP request to make.

url?: null | string

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