export interface DeleteStatusParams { /** Project ID or Project Key プロジェクトのID または プロジェクトキー */ projectIdOrKey: string | number; /** Status ID 状態のID */ id: number; /** * Status ID to replace linked issues statuses. Issues which status are set to the deleted status will be set to the specied substitute status. * * 紐づく課題を付け替える先の状態のID。 削除対象の状態が設定されている課題がある場合、このパラメーターで指定した状態へ一括変更します。 */ substituteStatusId: number; }