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