Add support for CreateEventPayload and DeleteEvent payload (#1646) (#1932)

This commit is contained in:
Guillaume Mouron
2019-01-31 11:37:00 +01:00
committed by Ryan Gribble
parent 5e751a6c38
commit 47c38bfd8e
5 changed files with 115 additions and 0 deletions
+4
View File
@@ -212,6 +212,10 @@ namespace Octokit.Internal
return typeof(CheckSuiteEventPayload);
case "CommitCommentEvent":
return typeof(CommitCommentPayload);
case "CreateEvent":
return typeof(CreateEventPayload);
case "DeleteEvent":
return typeof(DeleteEventPayload);
case "ForkEvent":
return typeof(ForkEventPayload);
case "IssueCommentEvent":