export interface AddPullRequestCommentParams { /** Project ID or Project Key プロジェクトのID または プロジェクトキー */ projectIdOrKey: string | number; /** Repository ID or Repository name リポジトリのID または リポジトリ名 */ repoIdOrName: string | number; /** Pull request number プルリクエストの番号 */ number: number; /** Comment コメントの本文 */ content: string; /** Attachment file ID(Post Attachment File returns) 添付ファイルの送信APIが返すID */ attachmentId?: number[]; /** User ID to send notification when comment is added コメント登録の通知を受け取るユーザーID */ notifiedUserId?: number[]; }