export interface UpdateOrderOfStatusParams { /** Project ID or Project Key プロジェクトのID または プロジェクトキー */ projectIdOrKey: string | number; /** * Status ID List to order them. You have to send all status of project. It has following restrictions as below. * * ”Open” has to be first * * ”Close” has to be last * * ”In Progress” has to be before “Resolved” * * 表示順に並べた、状態のIDのリスト。そのプロジェクトで使える全ての状態を渡してください。表示順には以下の制限があります * * 未対応は先頭にあること * * 完了は末尾にあること * * 処理中は処理済みよりも前にあること */ statusId: number[]; }