interface ReleaseReference {
    _links?: any;
    artifacts?: Artifact[];
    createdBy?: IdentityRef;
    createdOn?: Date;
    description?: string;
    id?: number;
    modifiedBy?: IdentityRef;
    name?: string;
    reason?: ReleaseReason;
    releaseDefinition?: ReleaseDefinitionShallowReference;
    url?: string;
    webAccessUri?: string;
}

Properties

_links?: any

Gets links to access the release.

artifacts?: Artifact[]

Gets list of artifacts.

createdBy?: IdentityRef

Gets the identity who created release.

createdOn?: Date

Gets date on when this release created.

description?: string

Gets description.

id?: number

ID of the Release.

modifiedBy?: IdentityRef

Gets the identity who modified release.

name?: string

Gets name of release.

reason?: ReleaseReason

Gets reason for release.

Gets release definition shallow reference.

url?: string
webAccessUri?: string