Contains information describing a project.

interface ProjectInfo {
    abbreviation?: string;
    description?: string;
    id?: string;
    lastUpdateTime?: Date;
    name?: string;
    properties?: ProjectProperty[];
    revision?: number;
    state?: any;
    uri?: string;
    version?: number;
    visibility?: ProjectVisibility;
}

Properties

abbreviation?: string

The abbreviated name of the project.

description?: string

The description of the project.

id?: string

The id of the project.

lastUpdateTime?: Date

The time that this project was last updated.

name?: string

The name of the project.

properties?: ProjectProperty[]

A set of name-value pairs storing additional property data related to the project.

revision?: number

The current revision of the project.

state?: any

The current state of the project.

uri?: string

A Uri that can be used to refer to this project.

version?: number

The version number of the project.

visibility?: ProjectVisibility

Indicates whom the project is visible to.