export interface UpdatePullRequestCommentInformationParams { /** Project ID or Project Key プロジェクトのID または プロジェクトキー */ projectIdOrKey: string | number; /** Repository ID or Repository name リポジトリのID または リポジトリ名 */ repoIdOrName: string | number; /** Pull request number プルリクエストの番号 */ number: number; /** Comment’s ID コメントのID */ commentId: number; /** Comment’s body コメントの本文 */ content: string; }