/* * Copyright 2010-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ package com.amazonaws.services.simpleemail.model; import java.io.Serializable; /** *
* Represents sending statistics data. Each SendDataPoint
contains
* statistics for a 15-minute period of sending activity.
*
* Time of the data point. *
*/ private java.util.Date timestamp; /** ** Number of emails that have been sent. *
*/ private Long deliveryAttempts; /** ** Number of emails that have bounced. *
*/ private Long bounces; /** ** Number of unwanted emails that were rejected by recipients. *
*/ private Long complaints; /** ** Number of emails rejected by Amazon SES. *
*/ private Long rejects; /** ** Time of the data point. *
* * @return* Time of the data point. *
*/ public java.util.Date getTimestamp() { return timestamp; } /** ** Time of the data point. *
* * @param timestamp* Time of the data point. *
*/ public void setTimestamp(java.util.Date timestamp) { this.timestamp = timestamp; } /** ** Time of the data point. *
** Returns a reference to this object so that method calls can be chained * together. * * @param timestamp
* Time of the data point. *
* @return A reference to this updated object so that method calls can be * chained together. */ public SendDataPoint withTimestamp(java.util.Date timestamp) { this.timestamp = timestamp; return this; } /** ** Number of emails that have been sent. *
* * @return* Number of emails that have been sent. *
*/ public Long getDeliveryAttempts() { return deliveryAttempts; } /** ** Number of emails that have been sent. *
* * @param deliveryAttempts* Number of emails that have been sent. *
*/ public void setDeliveryAttempts(Long deliveryAttempts) { this.deliveryAttempts = deliveryAttempts; } /** ** Number of emails that have been sent. *
** Returns a reference to this object so that method calls can be chained * together. * * @param deliveryAttempts
* Number of emails that have been sent. *
* @return A reference to this updated object so that method calls can be * chained together. */ public SendDataPoint withDeliveryAttempts(Long deliveryAttempts) { this.deliveryAttempts = deliveryAttempts; return this; } /** ** Number of emails that have bounced. *
* * @return* Number of emails that have bounced. *
*/ public Long getBounces() { return bounces; } /** ** Number of emails that have bounced. *
* * @param bounces* Number of emails that have bounced. *
*/ public void setBounces(Long bounces) { this.bounces = bounces; } /** ** Number of emails that have bounced. *
** Returns a reference to this object so that method calls can be chained * together. * * @param bounces
* Number of emails that have bounced. *
* @return A reference to this updated object so that method calls can be * chained together. */ public SendDataPoint withBounces(Long bounces) { this.bounces = bounces; return this; } /** ** Number of unwanted emails that were rejected by recipients. *
* * @return* Number of unwanted emails that were rejected by recipients. *
*/ public Long getComplaints() { return complaints; } /** ** Number of unwanted emails that were rejected by recipients. *
* * @param complaints* Number of unwanted emails that were rejected by recipients. *
*/ public void setComplaints(Long complaints) { this.complaints = complaints; } /** ** Number of unwanted emails that were rejected by recipients. *
** Returns a reference to this object so that method calls can be chained * together. * * @param complaints
* Number of unwanted emails that were rejected by recipients. *
* @return A reference to this updated object so that method calls can be * chained together. */ public SendDataPoint withComplaints(Long complaints) { this.complaints = complaints; return this; } /** ** Number of emails rejected by Amazon SES. *
* * @return* Number of emails rejected by Amazon SES. *
*/ public Long getRejects() { return rejects; } /** ** Number of emails rejected by Amazon SES. *
* * @param rejects* Number of emails rejected by Amazon SES. *
*/ public void setRejects(Long rejects) { this.rejects = rejects; } /** ** Number of emails rejected by Amazon SES. *
** Returns a reference to this object so that method calls can be chained * together. * * @param rejects
* Number of emails rejected by Amazon SES. *
* @return A reference to this updated object so that method calls can be * chained together. */ public SendDataPoint withRejects(Long rejects) { this.rejects = rejects; return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getTimestamp() != null) sb.append("Timestamp: " + getTimestamp() + ","); if (getDeliveryAttempts() != null) sb.append("DeliveryAttempts: " + getDeliveryAttempts() + ","); if (getBounces() != null) sb.append("Bounces: " + getBounces() + ","); if (getComplaints() != null) sb.append("Complaints: " + getComplaints() + ","); if (getRejects() != null) sb.append("Rejects: " + getRejects()); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getTimestamp() == null) ? 0 : getTimestamp().hashCode()); hashCode = prime * hashCode + ((getDeliveryAttempts() == null) ? 0 : getDeliveryAttempts().hashCode()); hashCode = prime * hashCode + ((getBounces() == null) ? 0 : getBounces().hashCode()); hashCode = prime * hashCode + ((getComplaints() == null) ? 0 : getComplaints().hashCode()); hashCode = prime * hashCode + ((getRejects() == null) ? 0 : getRejects().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof SendDataPoint == false) return false; SendDataPoint other = (SendDataPoint) obj; if (other.getTimestamp() == null ^ this.getTimestamp() == null) return false; if (other.getTimestamp() != null && other.getTimestamp().equals(this.getTimestamp()) == false) return false; if (other.getDeliveryAttempts() == null ^ this.getDeliveryAttempts() == null) return false; if (other.getDeliveryAttempts() != null && other.getDeliveryAttempts().equals(this.getDeliveryAttempts()) == false) return false; if (other.getBounces() == null ^ this.getBounces() == null) return false; if (other.getBounces() != null && other.getBounces().equals(this.getBounces()) == false) return false; if (other.getComplaints() == null ^ this.getComplaints() == null) return false; if (other.getComplaints() != null && other.getComplaints().equals(this.getComplaints()) == false) return false; if (other.getRejects() == null ^ this.getRejects() == null) return false; if (other.getRejects() != null && other.getRejects().equals(this.getRejects()) == false) return false; return true; } }