Represents a build log.

interface BuildLog {
    createdOn?: Date;
    id?: number;
    lastChangedOn?: Date;
    lineCount?: number;
    type?: string;
    url?: string;
}

Hierarchy (View Summary)

Properties

createdOn?: Date

The date and time the log was created.

id?: number

The ID of the log.

lastChangedOn?: Date

The date and time the log was last changed.

lineCount?: number

The number of lines in the log.

type?: string

The type of the log location.

url?: string

A full link to the log resource.