/** * This file was auto-generated by Fern from our API Definition. */ import * as Klavis from "../index.js"; /** * Jira Issue object */ export interface JiraIssue { /** Issue summary/title */ summary: string; /** Issue description */ description?: string; /** Issue type (Task, Bug, Story, etc.) */ issue_type?: string; /** Issue priority (Highest, High, Medium, Low, Lowest) */ priority?: string; /** Name of the sprint this issue belongs to (for initialization) */ sprint_name?: string; /** Comments on this issue */ comments?: Klavis.JiraComment[]; }