public class GetSendQuotaResult
extends java.lang.Object
implements java.io.Serializable
Represents the user's current activity limits returned from a successful GetSendQuota request.
| コンストラクタと説明 |
|---|
GetSendQuotaResult() |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.Double |
getMax24HourSend()
The maximum number of emails the user is allowed to send in a 24-hour
interval.
|
java.lang.Double |
getMaxSendRate()
The maximum number of emails the user is allowed to send per second.
|
java.lang.Double |
getSentLast24Hours()
The number of emails sent during the previous 24 hours.
|
int |
hashCode() |
void |
setMax24HourSend(java.lang.Double max24HourSend)
The maximum number of emails the user is allowed to send in a 24-hour
interval.
|
void |
setMaxSendRate(java.lang.Double maxSendRate)
The maximum number of emails the user is allowed to send per second.
|
void |
setSentLast24Hours(java.lang.Double sentLast24Hours)
The number of emails sent during the previous 24 hours.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
GetSendQuotaResult |
withMax24HourSend(java.lang.Double max24HourSend)
The maximum number of emails the user is allowed to send in a 24-hour
interval.
|
GetSendQuotaResult |
withMaxSendRate(java.lang.Double maxSendRate)
The maximum number of emails the user is allowed to send per second.
|
GetSendQuotaResult |
withSentLast24Hours(java.lang.Double sentLast24Hours)
The number of emails sent during the previous 24 hours.
|
public java.lang.Double getMax24HourSend()
public void setMax24HourSend(java.lang.Double max24HourSend)
max24HourSend - The maximum number of emails the user is allowed to send in a 24-hour
interval.public GetSendQuotaResult withMax24HourSend(java.lang.Double max24HourSend)
Returns a reference to this object so that method calls can be chained together.
max24HourSend - The maximum number of emails the user is allowed to send in a 24-hour
interval.public java.lang.Double getMaxSendRate()
public void setMaxSendRate(java.lang.Double maxSendRate)
maxSendRate - The maximum number of emails the user is allowed to send per second.public GetSendQuotaResult withMaxSendRate(java.lang.Double maxSendRate)
Returns a reference to this object so that method calls can be chained together.
maxSendRate - The maximum number of emails the user is allowed to send per second.public java.lang.Double getSentLast24Hours()
public void setSentLast24Hours(java.lang.Double sentLast24Hours)
sentLast24Hours - The number of emails sent during the previous 24 hours.public GetSendQuotaResult withSentLast24Hours(java.lang.Double sentLast24Hours)
Returns a reference to this object so that method calls can be chained together.
sentLast24Hours - The number of emails sent during the previous 24 hours.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