Details about a project.

interface Project {
    avatarUrls: Agile.AgileModels.AvatarUrls;
    id: string;
    key: string;
    name: string;
    projectCategory: {
        description?: string;
        id: string;
        name: string;
        self: string;
    };
    projectTypeKey: string;
    self: string;
    simplified: boolean;
}

Properties

id: string

The ID of the project.

key: string

The key of the project.

name: string

The name of the project.

projectCategory: {
    description?: string;
    id: string;
    name: string;
    self: string;
}

A project category.

Type declaration

  • Optional description?: string

    The name of the project category.

  • id: string

    The ID of the project category.

  • name: string

    The description of the project category.

  • self: string

    The URL of the project category.

projectTypeKey: string

The project type of the project.

self: string

The URL of the project details.

simplified: boolean

Whether or not the project is simplified.