Adds PullRequestReviewEventPayload (#1767)

* Adds PullRequestReviewEventPayload

* Remove random A
This commit is contained in:
Jordan Brown
2018-02-25 05:18:26 -05:00
committed by Ryan Gribble
parent e430a9ef14
commit 3ec01bd05a
3 changed files with 52 additions and 0 deletions
+2
View File
@@ -216,6 +216,8 @@ namespace Octokit.Internal
return typeof(IssueEventPayload);
case "PullRequestEvent":
return typeof(PullRequestEventPayload);
case "PullRequestReviewEvent":
return typeof(PullRequestReviewEventPayload);
case "PullRequestReviewCommentEvent":
return typeof(PullRequestCommentPayload);
case "PushEvent":