export interface AddIssueCommentParams { /** Issue ID or Issue Key 課題のID または 課題キー */ issueIdOrKey: string | number; /** Content コメントの本文 */ content: string; /** Notified User ID コメント登録の通知を受け取るユーザーID */ notifiedUserId?: number[]; /** Attachment file ID(Post Attachment File returns) 添付ファイルの送信APIが返すID */ attachmentId?: number[]; }