Jira.js - Jira Cloud API library
    Preparing search index...

    Interface Project

    Details about a project.

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

    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

    • Optionaldescription?: 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.