Metadata for an item.

interface TfvcItem {
    _links?: any;
    changeDate?: Date;
    content?: string;
    contentMetadata?: FileContentMetadata;
    deletionId?: number;
    encoding?: number;
    hashValue?: string;
    isBranch?: boolean;
    isFolder?: boolean;
    isPendingChange?: boolean;
    isSymLink?: boolean;
    path?: string;
    size?: number;
    url?: string;
    version?: number;
}

Hierarchy (View Summary)

Properties

_links?: any
changeDate?: Date

Item changed datetime.

content?: string
contentMetadata?: FileContentMetadata
deletionId?: number

Greater than 0 if item is deleted.

encoding?: number

File encoding from database, -1 represents binary.

hashValue?: string

MD5 hash as a base 64 string, applies to files only.

isBranch?: boolean

True if item is a branch.

isFolder?: boolean
isPendingChange?: boolean

True if there is a change pending.

isSymLink?: boolean
path?: string
size?: number

The size of the file, if applicable.

url?: string
version?: number

Changeset version Id.