A reference to a timeline.

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

Hierarchy (View Summary)

Properties

changeId?: number

The change ID.

id?: string

The ID of the timeline.

lastChangedBy?: string
lastChangedOn?: Date
location?: string

The REST URL of the timeline.

records?: TimelineRecord[]