public class SendDataPoint
extends java.lang.Object
implements java.io.Serializable
Represents sending statistics data. Each SendDataPoint contains statistics for a 15-minute period of sending activity.
| コンストラクタと説明 |
|---|
SendDataPoint() |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.Long |
getBounces()
Number of emails that have bounced.
|
java.lang.Long |
getComplaints()
Number of unwanted emails that were rejected by recipients.
|
java.lang.Long |
getDeliveryAttempts()
Number of emails that have been enqueued for sending.
|
java.lang.Long |
getRejects()
Number of emails rejected by Amazon SES.
|
java.util.Date |
getTimestamp()
Time of the data point.
|
int |
hashCode() |
void |
setBounces(java.lang.Long bounces)
Number of emails that have bounced.
|
void |
setComplaints(java.lang.Long complaints)
Number of unwanted emails that were rejected by recipients.
|
void |
setDeliveryAttempts(java.lang.Long deliveryAttempts)
Number of emails that have been enqueued for sending.
|
void |
setRejects(java.lang.Long rejects)
Number of emails rejected by Amazon SES.
|
void |
setTimestamp(java.util.Date timestamp)
Time of the data point.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
SendDataPoint |
withBounces(java.lang.Long bounces)
Number of emails that have bounced.
|
SendDataPoint |
withComplaints(java.lang.Long complaints)
Number of unwanted emails that were rejected by recipients.
|
SendDataPoint |
withDeliveryAttempts(java.lang.Long deliveryAttempts)
Number of emails that have been enqueued for sending.
|
SendDataPoint |
withRejects(java.lang.Long rejects)
Number of emails rejected by Amazon SES.
|
SendDataPoint |
withTimestamp(java.util.Date timestamp)
Time of the data point.
|
public java.util.Date getTimestamp()
public void setTimestamp(java.util.Date timestamp)
timestamp - Time of the data point.public SendDataPoint withTimestamp(java.util.Date timestamp)
Returns a reference to this object so that method calls can be chained together.
timestamp - Time of the data point.public java.lang.Long getDeliveryAttempts()
public void setDeliveryAttempts(java.lang.Long deliveryAttempts)
deliveryAttempts - Number of emails that have been enqueued for sending.public SendDataPoint withDeliveryAttempts(java.lang.Long deliveryAttempts)
Returns a reference to this object so that method calls can be chained together.
deliveryAttempts - Number of emails that have been enqueued for sending.public java.lang.Long getBounces()
public void setBounces(java.lang.Long bounces)
bounces - Number of emails that have bounced.public SendDataPoint withBounces(java.lang.Long bounces)
Returns a reference to this object so that method calls can be chained together.
bounces - Number of emails that have bounced.public java.lang.Long getComplaints()
public void setComplaints(java.lang.Long complaints)
complaints - Number of unwanted emails that were rejected by recipients.public SendDataPoint withComplaints(java.lang.Long complaints)
Returns a reference to this object so that method calls can be chained together.
complaints - Number of unwanted emails that were rejected by recipients.public java.lang.Long getRejects()
public void setRejects(java.lang.Long rejects)
rejects - Number of emails rejected by Amazon SES.public SendDataPoint withRejects(java.lang.Long rejects)
Returns a reference to this object so that method calls can be chained together.
rejects - Number of emails rejected by Amazon SES.public java.lang.String toString()
toString クラス内 java.lang.ObjectObject.toString()public int hashCode()
hashCode クラス内 java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals クラス内 java.lang.Object