-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for obtaining aggregate graph statistics http://dev.mai…
- Loading branch information
JamieDunstan
committed
Jul 15, 2016
1 parent
5c8ff6b
commit f4edd81
Showing
3 changed files
with
104 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
namespace MailJet.Client.Response.Data | ||
{ | ||
public class AggregateGraphStatistics: DataItem | ||
{ | ||
/// <summary> | ||
/// Number of blocked messages. | ||
/// </summary> | ||
public double BlockedCount { get; set; } | ||
|
||
/// <summary> | ||
/// BlockedStdDev count. | ||
/// </summary> | ||
public double BlockedStdDev { get; set; } | ||
|
||
/// <summary> | ||
/// Number of bounced messages. | ||
/// </summary> | ||
public double BouncedCount { get; set; } | ||
|
||
/// <summary> | ||
/// BouncedStdDev count. | ||
/// </summary> | ||
public double BouncedStdDev { get; set; } | ||
|
||
/// <summary> | ||
/// The ID of campaign aggregate object that corresponds with the statistics. | ||
/// </summary> | ||
public long CampaignAggregateID { get; set; } | ||
|
||
/// <summary> | ||
/// Number of registered clicks. | ||
/// </summary> | ||
public double ClickedCount { get; set; } | ||
|
||
/// <summary> | ||
/// ClickedStdDev count. | ||
/// </summary> | ||
public double ClickedStdDev { get; set; } | ||
|
||
/// <summary> | ||
/// Number of open registrations. | ||
/// </summary> | ||
public double OpenedCount { get; set; } | ||
|
||
/// <summary> | ||
/// OpenedStdDev count. | ||
/// </summary> | ||
public double OpenedStdDev { get; set; } | ||
|
||
/// <summary> | ||
/// Reference time in textual form. | ||
/// </summary> | ||
public long RefTimestamp { get; set; } | ||
|
||
/// <summary> | ||
/// Number of sent messages. | ||
/// </summary> | ||
public double SentCount { get; set; } | ||
|
||
/// <summary> | ||
/// SentStdDev count. | ||
/// </summary> | ||
public double SentStdDev { get; set; } | ||
|
||
/// <summary> | ||
/// Number of spam complains. | ||
/// </summary> | ||
public double SpamComplaintCount { get; set; } | ||
|
||
/// <summary> | ||
/// SpamcomplaintStdDev count. | ||
/// </summary> | ||
public double SpamcomplaintStdDev { get; set; } | ||
|
||
/// <summary> | ||
/// Number of registered unsubscribe requests. | ||
/// </summary> | ||
public double UnsubscribedCount { get; set; } | ||
|
||
/// <summary> | ||
/// UnsubscribedStdDev count. | ||
/// </summary> | ||
public double UnsubscribedStdDev { get; set; } | ||
} | ||
} |