import type { DateString } from "../../types/DateString"; export interface UpdateVersionMilestoneParams { /** Project ID or Project Key プロジェクトのID または プロジェクトキー */ projectIdOrKey: string | number; /** Version ID バージョンのID */ id: number; /** Version name バージョンの名前 */ name?: string; /** Version description バージョンの説明 */ description?: string; /** Start Date (yyyy-MM-dd) バージョンの開始日 (yyyy-MM-dd) */ startDate?: DateString; /** End Date (yyyy-MM-dd) バージョンのリリース予定日 (yyyy-MM-dd) */ releaseDueDate?: DateString; }