export interface AddPullRequestParams { /** Project ID or Project Key プロジェクトのID または プロジェクトキー */ projectIdOrKey: string | number; /** Repository ID or Repository name リポジトリのID または リポジトリ名 */ repoIdOrName: string | number; /** Summary of pull request プルリクエストの件名 */ summary: string; /** Description of pull request プルリクエストの詳細 */ description: string; /** Branch name of merge base マージ先のブランチ名 */ base: string; /** Name of merging branch マージされるブランチ名 */ branch: string; /** Related issue’s ID 関連課題のID */ issueId?: number; /** Assignee’s ID of pull request プルリクエストの担当者のID */ assigneeId?: number; /** User ID to send notification when pull request is added プルリクエストの登録の通知を受け取るユーザーのID */ notifiedUserId?: number[]; /** ID returned by “Post Attachment File” API 添付ファイルの送信APIが返すID */ attachmentId?: number[]; }