Represents the timeline of a build.

interface Timeline {
    changeId?: number;
    id?: string;
    lastChangedBy?: string;
    lastChangedOn?: Date;
    records?: TimelineRecord[];
    url?: string;
}

Hierarchy (View Summary)

Properties

changeId?: number

The change ID.

id?: string

The ID of the timeline.

lastChangedBy?: string

The process or person that last changed the timeline.

lastChangedOn?: Date

The time the timeline was last changed.

records?: TimelineRecord[]
url?: string

The REST URL of the timeline.