Represents a list of SendDataPoint items returned from a successful GetSendStatistics request. This list contains aggregated data from the previous two weeks of sending activity.
Inheritance: Amazon.Runtime.AmazonWebServiceResponse
 protected void Page_Load(object sender, EventArgs e)
 {
     r = Utility.getSESUtils().getSendStats();
     r.SendDataPoints = r.SendDataPoints.OrderBy(x => x.Timestamp).ToList();                
 }