From aa80eaa551463f1bd6d7a94f916b285384dd25f8 Mon Sep 17 00:00:00 2001 From: Ryan Gribble Date: Mon, 16 Jan 2017 23:30:47 +1000 Subject: [PATCH] Add "Bot" AccountType, was causing a deserialization exception when running the integration test "SearchForExcludedLanguage" (#1541) --- Octokit/Models/Response/AccountType.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Octokit/Models/Response/AccountType.cs b/Octokit/Models/Response/AccountType.cs index b4797ba9..dddc366d 100644 --- a/Octokit/Models/Response/AccountType.cs +++ b/Octokit/Models/Response/AccountType.cs @@ -10,6 +10,11 @@ /// /// Organization account /// - Organization + Organization, + + /// + /// Bot account + /// + Bot } }