Information about a fork ref.

interface GitForkRef {
    _links?: any;
    creator?: IdentityRef;
    isLocked?: boolean;
    isLockedBy?: IdentityRef;
    name?: string;
    objectId?: string;
    peeledObjectId?: string;
    repository?: GitRepository;
    statuses?: GitStatus[];
    url?: string;
}

Hierarchy (View Summary)

Properties

_links?: any
creator?: IdentityRef
isLocked?: boolean
isLockedBy?: IdentityRef
name?: string
objectId?: string
peeledObjectId?: string
repository?: GitRepository

The repository ID of the fork.

statuses?: GitStatus[]
url?: string