All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.simpleemailv2.model.DailyVolume Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon Simple Email module holds the client classes that are used for communicating with Amazon Simple Email Service

There is a newer version: 1.12.780
Show newest version
/*
 * Copyright 2019-2024 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.simpleemailv2.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* An object that contains information about the volume of email sent on each day of the analysis period. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class DailyVolume implements Serializable, Cloneable, StructuredPojo { /** *

* The date that the DailyVolume metrics apply to, in Unix time. *

*/ private java.util.Date startDate; /** *

* An object that contains inbox placement metrics for a specific day in the analysis period. *

*/ private VolumeStatistics volumeStatistics; /** *

* An object that contains inbox placement metrics for a specified day in the analysis period, broken out by the * recipient's email provider. *

*/ private java.util.List domainIspPlacements; /** *

* The date that the DailyVolume metrics apply to, in Unix time. *

* * @param startDate * The date that the DailyVolume metrics apply to, in Unix time. */ public void setStartDate(java.util.Date startDate) { this.startDate = startDate; } /** *

* The date that the DailyVolume metrics apply to, in Unix time. *

* * @return The date that the DailyVolume metrics apply to, in Unix time. */ public java.util.Date getStartDate() { return this.startDate; } /** *

* The date that the DailyVolume metrics apply to, in Unix time. *

* * @param startDate * The date that the DailyVolume metrics apply to, in Unix time. * @return Returns a reference to this object so that method calls can be chained together. */ public DailyVolume withStartDate(java.util.Date startDate) { setStartDate(startDate); return this; } /** *

* An object that contains inbox placement metrics for a specific day in the analysis period. *

* * @param volumeStatistics * An object that contains inbox placement metrics for a specific day in the analysis period. */ public void setVolumeStatistics(VolumeStatistics volumeStatistics) { this.volumeStatistics = volumeStatistics; } /** *

* An object that contains inbox placement metrics for a specific day in the analysis period. *

* * @return An object that contains inbox placement metrics for a specific day in the analysis period. */ public VolumeStatistics getVolumeStatistics() { return this.volumeStatistics; } /** *

* An object that contains inbox placement metrics for a specific day in the analysis period. *

* * @param volumeStatistics * An object that contains inbox placement metrics for a specific day in the analysis period. * @return Returns a reference to this object so that method calls can be chained together. */ public DailyVolume withVolumeStatistics(VolumeStatistics volumeStatistics) { setVolumeStatistics(volumeStatistics); return this; } /** *

* An object that contains inbox placement metrics for a specified day in the analysis period, broken out by the * recipient's email provider. *

* * @return An object that contains inbox placement metrics for a specified day in the analysis period, broken out by * the recipient's email provider. */ public java.util.List getDomainIspPlacements() { return domainIspPlacements; } /** *

* An object that contains inbox placement metrics for a specified day in the analysis period, broken out by the * recipient's email provider. *

* * @param domainIspPlacements * An object that contains inbox placement metrics for a specified day in the analysis period, broken out by * the recipient's email provider. */ public void setDomainIspPlacements(java.util.Collection domainIspPlacements) { if (domainIspPlacements == null) { this.domainIspPlacements = null; return; } this.domainIspPlacements = new java.util.ArrayList(domainIspPlacements); } /** *

* An object that contains inbox placement metrics for a specified day in the analysis period, broken out by the * recipient's email provider. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setDomainIspPlacements(java.util.Collection)} or {@link #withDomainIspPlacements(java.util.Collection)} * if you want to override the existing values. *

* * @param domainIspPlacements * An object that contains inbox placement metrics for a specified day in the analysis period, broken out by * the recipient's email provider. * @return Returns a reference to this object so that method calls can be chained together. */ public DailyVolume withDomainIspPlacements(DomainIspPlacement... domainIspPlacements) { if (this.domainIspPlacements == null) { setDomainIspPlacements(new java.util.ArrayList(domainIspPlacements.length)); } for (DomainIspPlacement ele : domainIspPlacements) { this.domainIspPlacements.add(ele); } return this; } /** *

* An object that contains inbox placement metrics for a specified day in the analysis period, broken out by the * recipient's email provider. *

* * @param domainIspPlacements * An object that contains inbox placement metrics for a specified day in the analysis period, broken out by * the recipient's email provider. * @return Returns a reference to this object so that method calls can be chained together. */ public DailyVolume withDomainIspPlacements(java.util.Collection domainIspPlacements) { setDomainIspPlacements(domainIspPlacements); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getStartDate() != null) sb.append("StartDate: ").append(getStartDate()).append(","); if (getVolumeStatistics() != null) sb.append("VolumeStatistics: ").append(getVolumeStatistics()).append(","); if (getDomainIspPlacements() != null) sb.append("DomainIspPlacements: ").append(getDomainIspPlacements()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DailyVolume == false) return false; DailyVolume other = (DailyVolume) obj; if (other.getStartDate() == null ^ this.getStartDate() == null) return false; if (other.getStartDate() != null && other.getStartDate().equals(this.getStartDate()) == false) return false; if (other.getVolumeStatistics() == null ^ this.getVolumeStatistics() == null) return false; if (other.getVolumeStatistics() != null && other.getVolumeStatistics().equals(this.getVolumeStatistics()) == false) return false; if (other.getDomainIspPlacements() == null ^ this.getDomainIspPlacements() == null) return false; if (other.getDomainIspPlacements() != null && other.getDomainIspPlacements().equals(this.getDomainIspPlacements()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getStartDate() == null) ? 0 : getStartDate().hashCode()); hashCode = prime * hashCode + ((getVolumeStatistics() == null) ? 0 : getVolumeStatistics().hashCode()); hashCode = prime * hashCode + ((getDomainIspPlacements() == null) ? 0 : getDomainIspPlacements().hashCode()); return hashCode; } @Override public DailyVolume clone() { try { return (DailyVolume) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.simpleemailv2.model.transform.DailyVolumeMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy