A task log connected to a timeline record.

interface TaskLog {
    createdOn?: Date;
    id?: number;
    indexLocation?: string;
    lastChangedOn?: Date;
    lineCount?: number;
    location?: string;
    path?: string;
}

Hierarchy (View Summary)

Properties

createdOn?: Date

The time of the task log creation.

id?: number

The ID of the task log.

indexLocation?: string

The REST URL of the task log when indexed.

lastChangedOn?: Date

The time of the last modification of the task log.

lineCount?: number

The number of the task log lines.

location?: string

The REST URL of the task log.

path?: string

The path of the task log.