interface AddPullRequestCommentParams {
    attachmentId?: number[];
    content: string;
    notifiedUserId?: number[];
    number: number;
    projectIdOrKey: string | number;
    repoIdOrName: string | number;
}

Properties

attachmentId?: number[]

Attachment file ID(Post Attachment File returns) 添付ファイルの送信APIが返すID

content: string

Comment コメントの本文

notifiedUserId?: number[]

User ID to send notification when comment is added コメント登録の通知を受け取るユーザーID

number: number

Pull request number プルリクエストの番号

projectIdOrKey: string | number

Project ID or Project Key プロジェクトのID または プロジェクトキー

repoIdOrName: string | number

Repository ID or Repository name リポジトリのID または リポジトリ名