interface GitItem {
    _links?: any;
    commitId?: string;
    content?: string;
    contentMetadata?: FileContentMetadata;
    gitObjectType?: GitObjectType;
    isFolder?: boolean;
    isSymLink?: boolean;
    latestProcessedChange?: GitCommitRef;
    objectId?: string;
    originalObjectId?: string;
    path?: string;
    url?: string;
}

Hierarchy (View Summary)

Properties

_links?: any
commitId?: string

SHA1 of commit item was fetched at

content?: string
contentMetadata?: FileContentMetadata
gitObjectType?: GitObjectType

Type of object (Commit, Tree, Blob, Tag, ...)

isFolder?: boolean
isSymLink?: boolean
latestProcessedChange?: GitCommitRef

Shallow ref to commit that last changed this item Only populated if latestProcessedChange is requested May not be accurate if latest change is not yet cached

objectId?: string

Git object id

originalObjectId?: string

Git object id

path?: string
url?: string