SendDataPoint constructor

SendDataPoint({
  1. int? bounces,
  2. int? complaints,
  3. int? deliveryAttempts,
  4. int? rejects,
  5. DateTime? timestamp,
})

Implementation

SendDataPoint({
  this.bounces,
  this.complaints,
  this.deliveryAttempts,
  this.rejects,
  this.timestamp,
});