/** * This file was auto-generated by Fern from our API Definition. */ import * as Klavis from "../index.js"; /** * Jira Project object */ export interface JiraProject { /** Project key (e.g., PROJ) */ key: string; /** Project name */ name: string; /** Project description */ description?: string; /** Project type (software, business, etc.) */ project_type?: string; /** Issues in this project */ issues?: Klavis.JiraIssue[]; }