Class: OpportunityTasks

OpportunityTasks

An api adapter over the end points handling multiple opportunity tasks via functions in the opportunities ESI endpoints. You should not usually instantiate this directly as its constructor requires an internal api instance.

This is a function class so instances of OpportunityTasks are functions and can be invoked directly, besides accessing its members. Its default function action is equivalent to get or all depending on if an id is provided.


new OpportunityTasks(agent)

Create a new OpportunityTasks function using the given agent.

Parameters:
Name Type Description
agent ESIAgent

The ESI agent

Methods


all()

Return a list of opportunities tasks. This route expires daily at 11:05.

This makes an HTTP GET request to /opportunities/tasks/. The route version is v1.

On success, this resolves to a list of opportunities task ids.

Returns:

A Promise that resolves to the parsed JSON of the response.

Type
Promise.<Array.<Number>>

get(id)

Create a new OpportunityTask end point targeting the particular effect by id.

Parameters:
Name Type Description
id Number

The effect id

Returns:
Type
OpportunityTask