Details about a project.

interface ProjectDetails {
    avatarUrls?: AvatarUrlsBean;
    id?: string;
    key?: string;
    name?: string;
    projectCategory?: UpdatedProjectCategory;
    projectTypeKey?:
        | "software"
        | "service_desk"
        | "product_discovery"
        | "business";
    self?: string;
    simplified?: boolean;
}

Properties

avatarUrls?: AvatarUrlsBean

The URLs of the project's avatars.

id?: string

The ID of the project.

key?: string

The key of the project.

name?: string

The name of the project.

projectCategory?: UpdatedProjectCategory

The category the project belongs to.

projectTypeKey?:
    | "software"
    | "service_desk"
    | "product_discovery"
    | "business"

The project type of the project.

self?: string

The URL of the project details.

simplified?: boolean

Whether or not the project is simplified.