Properties of a MaxTask.

interface IMaxTask {
    jobs?: null | IOracleJob[];
    tasks?: null | ITask[];
}

Implemented by

Properties

Properties

jobs?: null | IOracleJob[]

A list of subjobs to process and produce a list of result values.

tasks?: null | ITask[]

A list of subtasks to process and produce a list of result values.