public class GetSendQuotaResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Modifier and Type | Field and Description |
---|---|
private java.lang.Double |
max24HourSend
The maximum number of emails the user is allowed to send in a 24-hour
interval.
|
private java.lang.Double |
maxSendRate
The maximum number of emails that Amazon SES can accept from the user's
account per second.
|
private java.lang.Double |
sentLast24Hours
The number of emails sent during the previous 24 hours.
|
Constructor and Description |
---|
GetSendQuotaResult() |
Modifier and Type | Method and Description |
---|---|
GetSendQuotaResult |
clone() |
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 that Amazon SES can accept from the user's
account 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 that Amazon SES can accept from the user's
account 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 that Amazon SES can accept from the user's
account per second.
|
GetSendQuotaResult |
withSentLast24Hours(java.lang.Double sentLast24Hours)
The number of emails sent during the previous 24 hours.
|
private java.lang.Double max24HourSend
The maximum number of emails the user is allowed to send in a 24-hour interval. A value of -1 signifies an unlimited quota.
private java.lang.Double maxSendRate
The maximum number of emails that Amazon SES can accept from the user's account per second.
private java.lang.Double sentLast24Hours
The number of emails sent during the previous 24 hours.
public void setMax24HourSend(java.lang.Double max24HourSend)
The maximum number of emails the user is allowed to send in a 24-hour interval. A value of -1 signifies an unlimited quota.
max24HourSend
- The maximum number of emails the user is allowed to send in a
24-hour interval. A value of -1 signifies an unlimited quota.public java.lang.Double getMax24HourSend()
The maximum number of emails the user is allowed to send in a 24-hour interval. A value of -1 signifies an unlimited quota.
public GetSendQuotaResult withMax24HourSend(java.lang.Double max24HourSend)
The maximum number of emails the user is allowed to send in a 24-hour interval. A value of -1 signifies an unlimited quota.
max24HourSend
- The maximum number of emails the user is allowed to send in a
24-hour interval. A value of -1 signifies an unlimited quota.public void setMaxSendRate(java.lang.Double maxSendRate)
The maximum number of emails that Amazon SES can accept from the user's account per second.
maxSendRate
- The maximum number of emails that Amazon SES can accept from the
user's account per second. public java.lang.Double getMaxSendRate()
The maximum number of emails that Amazon SES can accept from the user's account per second.
public GetSendQuotaResult withMaxSendRate(java.lang.Double maxSendRate)
The maximum number of emails that Amazon SES can accept from the user's account per second.
maxSendRate
- The maximum number of emails that Amazon SES can accept from the
user's account per second. public void setSentLast24Hours(java.lang.Double sentLast24Hours)
The number of emails sent during the previous 24 hours.
sentLast24Hours
- The number of emails sent during the previous 24 hours.public java.lang.Double getSentLast24Hours()
The number of emails sent during the previous 24 hours.
public GetSendQuotaResult withSentLast24Hours(java.lang.Double sentLast24Hours)
The number of emails sent during the previous 24 hours.
sentLast24Hours
- The number of emails sent during the previous 24 hours.public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public GetSendQuotaResult clone()
clone
in class java.lang.Object