class PrNotifier::PullRequest

Attributes

assignees[R]
body[R]
created_at[R]
creator[R]
repo[R]
repo_url[R]
reviewers[R]
title[R]
url[R]

Public Class Methods

new(repo:, repo_url:, url:, title:, body:, reviewers:, assignees:, creator:, created_at:) click to toggle source
# File lib/pr-notifier/github.rb, line 7
def initialize(repo:, repo_url:, url:, title:, body:, reviewers:, assignees:, creator:, created_at:)
  @repo = repo
  @repo_url = repo_url
  @url = url
  @title = title
  @body = body
  @reviewers = reviewers
  @assignees = assignees
  @creator = creator
  @created_at = created_at
end