import type { IssueTypeColor } from "../../types/IssueTypeColor"; export interface AddIssueTypeParams { /** Project ID or Project Key プロジェクトのID または プロジェクトキー */ projectIdOrKey: string | number; /** Status name 状態の名前 */ name: string; /** Background color 状態の背景色 */ color: IssueTypeColor; /** Subject 課題テンプレートの件名 */ templateSummary?: string; /** Description 課題テンプレートの詳細 */ templateDescription?: string; }