Represents a reference to a build.

interface BuildReference {
    _links?: any;
    buildNumber?: string;
    deleted?: boolean;
    finishTime?: Date;
    id?: number;
    queueTime?: Date;
    requestedFor?: IdentityRef;
    result?: BuildResult;
    startTime?: Date;
    status?: BuildStatus;
}

Properties

_links?: any
buildNumber?: string

The build number.

deleted?: boolean

Indicates whether the build has been deleted.

finishTime?: Date

The time that the build was completed.

id?: number

The ID of the build.

queueTime?: Date

The time that the build was queued.

requestedFor?: IdentityRef

The identity on whose behalf the build was queued.

result?: BuildResult

The build result.

startTime?: Date

The time that the build was started.

status?: BuildStatus

The build status.