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 31d49b5..6e86be1 100644
--- a/SendGrid/SendGrid/Client.cs
+++ b/SendGrid/SendGrid/Client.cs
@@ -17,6 +17,7 @@ namespace SendGrid
public UnsubscribeGroups UnsubscribeGroups;
public Suppressions Suppressions;
public GlobalSuppressions GlobalSuppressions;
+ public GlobalStats GlobalStats;
public string Version;
private Uri _baseUri;
private const string MediaType = "application/json";
@@ -39,6 +40,7 @@ namespace SendGrid
UnsubscribeGroups = new UnsubscribeGroups(this);
Suppressions = new Suppressions(this);
GlobalSuppressions = new GlobalSuppressions(this);
+ GlobalStats = new GlobalStats(this);
}
/// <summary>