Metadata for a shelveset.

interface TfvcShelveset {
    _links?: any;
    changes?: TfvcChange[];
    comment?: string;
    commentTruncated?: boolean;
    createdDate?: Date;
    id?: string;
    name?: string;
    notes?: CheckinNote[];
    owner?: IdentityRef;
    policyOverride?: TfvcPolicyOverrideInfo;
    url?: string;
    workItems?: AssociatedWorkItem[];
}

Hierarchy (View Summary)

Properties

_links?: any

List of reference links for the shelveset.

changes?: TfvcChange[]

List of changes.

comment?: string

Shelveset comment.

commentTruncated?: boolean

Shelveset comment truncated as applicable.

createdDate?: Date

Shelveset create date.

id?: string

Shelveset Id.

name?: string

Shelveset name.

notes?: CheckinNote[]

List of checkin notes.

owner?: IdentityRef

Shelveset Owner.

policyOverride?: TfvcPolicyOverrideInfo

Policy override information if applicable.

url?: string

Shelveset Url.

workItems?: AssociatedWorkItem[]

List of associated workitems.