summaryrefslogtreecommitdiffstats
path: root/SendGrid/SendGrid/Client.cs
diff options
context:
space:
mode:
Diffstat (limited to 'SendGrid/SendGrid/Client.cs')
-rw-r--r--SendGrid/SendGrid/Client.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/SendGrid/SendGrid/Client.cs b/SendGrid/SendGrid/Client.cs
index fdcaf8b..31d49b5 100644
--- a/SendGrid/SendGrid/Client.cs
+++ b/SendGrid/SendGrid/Client.cs
@@ -16,6 +16,7 @@ namespace SendGrid
public APIKeys ApiKeys;
public UnsubscribeGroups UnsubscribeGroups;
public Suppressions Suppressions;
+ public GlobalSuppressions GlobalSuppressions;
public string Version;
private Uri _baseUri;
private const string MediaType = "application/json";
@@ -37,6 +38,7 @@ namespace SendGrid
ApiKeys = new APIKeys(this);
UnsubscribeGroups = new UnsubscribeGroups(this);
Suppressions = new Suppressions(this);
+ GlobalSuppressions = new GlobalSuppressions(this);
}
/// <summary>