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

com.amazonaws.services.pinpoint.model.EmailChannelResponse Maven / Gradle / Ivy

Go to download

The AWS Android SDK for Amazon Pinpoint module holds the client classes that are used for communicating with Amazon Pinpoint Service

There is a newer version: 2.77.0
Show newest version
/*
 * Copyright 2010-2018 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.pinpoint.model;

import java.io.Serializable;

/**
 * Email Channel Response.
 */
public class EmailChannelResponse implements Serializable {
    /**
     * The unique ID of the application to which the email channel belongs.
     */
    private String applicationId;

    /**
     * The date that the settings were last updated in ISO 8601 format.
     */
    private String creationDate;

    /**
     * If the channel is enabled for sending messages.
     */
    private Boolean enabled;

    /**
     * The email address used to send emails from.
     */
    private String fromAddress;

    /**
     * If the channel is registered with a credential for authentication.
     */
    private Boolean hasCredential;

    /**
     * Channel ID. Not used, only for backwards compatibility.
     */
    private String id;

    /**
     * The ARN of an identity verified with SES.
     */
    private String identity;

    /**
     * Is this channel archived
     */
    private Boolean isArchived;

    /**
     * Who last updated this entry
     */
    private String lastModifiedBy;

    /**
     * Last date this was updated
     */
    private String lastModifiedDate;

    /**
     * Platform type. Will be "EMAIL"
     */
    private String platform;

    /**
     * The ARN of an IAM Role used to submit events to Mobile Analytics' event
     * ingestion service
     */
    private String roleArn;

    /**
     * Version of channel
     */
    private Integer version;

    /**
     * The unique ID of the application to which the email channel belongs.
     *
     * @return The unique ID of the application to which the email channel
     *         belongs.
     */
    public String getApplicationId() {
        return applicationId;
    }

    /**
     * The unique ID of the application to which the email channel belongs.
     *
     * @param applicationId The unique ID of the application to which the email
     *            channel belongs.
     */
    public void setApplicationId(String applicationId) {
        this.applicationId = applicationId;
    }

    /**
     * The unique ID of the application to which the email channel belongs.
     * 

* Returns a reference to this object so that method calls can be chained * together. * * @param applicationId The unique ID of the application to which the email * channel belongs. * @return A reference to this updated object so that method calls can be * chained together. */ public EmailChannelResponse withApplicationId(String applicationId) { this.applicationId = applicationId; return this; } /** * The date that the settings were last updated in ISO 8601 format. * * @return The date that the settings were last updated in ISO 8601 format. */ public String getCreationDate() { return creationDate; } /** * The date that the settings were last updated in ISO 8601 format. * * @param creationDate The date that the settings were last updated in ISO * 8601 format. */ public void setCreationDate(String creationDate) { this.creationDate = creationDate; } /** * The date that the settings were last updated in ISO 8601 format. *

* Returns a reference to this object so that method calls can be chained * together. * * @param creationDate The date that the settings were last updated in ISO * 8601 format. * @return A reference to this updated object so that method calls can be * chained together. */ public EmailChannelResponse withCreationDate(String creationDate) { this.creationDate = creationDate; return this; } /** * If the channel is enabled for sending messages. * * @return If the channel is enabled for sending messages. */ public Boolean isEnabled() { return enabled; } /** * If the channel is enabled for sending messages. * * @return If the channel is enabled for sending messages. */ public Boolean getEnabled() { return enabled; } /** * If the channel is enabled for sending messages. * * @param enabled If the channel is enabled for sending messages. */ public void setEnabled(Boolean enabled) { this.enabled = enabled; } /** * If the channel is enabled for sending messages. *

* Returns a reference to this object so that method calls can be chained * together. * * @param enabled If the channel is enabled for sending messages. * @return A reference to this updated object so that method calls can be * chained together. */ public EmailChannelResponse withEnabled(Boolean enabled) { this.enabled = enabled; return this; } /** * The email address used to send emails from. * * @return The email address used to send emails from. */ public String getFromAddress() { return fromAddress; } /** * The email address used to send emails from. * * @param fromAddress The email address used to send emails from. */ public void setFromAddress(String fromAddress) { this.fromAddress = fromAddress; } /** * The email address used to send emails from. *

* Returns a reference to this object so that method calls can be chained * together. * * @param fromAddress The email address used to send emails from. * @return A reference to this updated object so that method calls can be * chained together. */ public EmailChannelResponse withFromAddress(String fromAddress) { this.fromAddress = fromAddress; return this; } /** * If the channel is registered with a credential for authentication. * * @return If the channel is registered with a credential for * authentication. */ public Boolean isHasCredential() { return hasCredential; } /** * If the channel is registered with a credential for authentication. * * @return If the channel is registered with a credential for * authentication. */ public Boolean getHasCredential() { return hasCredential; } /** * If the channel is registered with a credential for authentication. * * @param hasCredential If the channel is registered with a credential for * authentication. */ public void setHasCredential(Boolean hasCredential) { this.hasCredential = hasCredential; } /** * If the channel is registered with a credential for authentication. *

* Returns a reference to this object so that method calls can be chained * together. * * @param hasCredential If the channel is registered with a credential for * authentication. * @return A reference to this updated object so that method calls can be * chained together. */ public EmailChannelResponse withHasCredential(Boolean hasCredential) { this.hasCredential = hasCredential; return this; } /** * Channel ID. Not used, only for backwards compatibility. * * @return Channel ID. Not used, only for backwards compatibility. */ public String getId() { return id; } /** * Channel ID. Not used, only for backwards compatibility. * * @param id Channel ID. Not used, only for backwards compatibility. */ public void setId(String id) { this.id = id; } /** * Channel ID. Not used, only for backwards compatibility. *

* Returns a reference to this object so that method calls can be chained * together. * * @param id Channel ID. Not used, only for backwards compatibility. * @return A reference to this updated object so that method calls can be * chained together. */ public EmailChannelResponse withId(String id) { this.id = id; return this; } /** * The ARN of an identity verified with SES. * * @return The ARN of an identity verified with SES. */ public String getIdentity() { return identity; } /** * The ARN of an identity verified with SES. * * @param identity The ARN of an identity verified with SES. */ public void setIdentity(String identity) { this.identity = identity; } /** * The ARN of an identity verified with SES. *

* Returns a reference to this object so that method calls can be chained * together. * * @param identity The ARN of an identity verified with SES. * @return A reference to this updated object so that method calls can be * chained together. */ public EmailChannelResponse withIdentity(String identity) { this.identity = identity; return this; } /** * Is this channel archived * * @return Is this channel archived */ public Boolean isIsArchived() { return isArchived; } /** * Is this channel archived * * @return Is this channel archived */ public Boolean getIsArchived() { return isArchived; } /** * Is this channel archived * * @param isArchived Is this channel archived */ public void setIsArchived(Boolean isArchived) { this.isArchived = isArchived; } /** * Is this channel archived *

* Returns a reference to this object so that method calls can be chained * together. * * @param isArchived Is this channel archived * @return A reference to this updated object so that method calls can be * chained together. */ public EmailChannelResponse withIsArchived(Boolean isArchived) { this.isArchived = isArchived; return this; } /** * Who last updated this entry * * @return Who last updated this entry */ public String getLastModifiedBy() { return lastModifiedBy; } /** * Who last updated this entry * * @param lastModifiedBy Who last updated this entry */ public void setLastModifiedBy(String lastModifiedBy) { this.lastModifiedBy = lastModifiedBy; } /** * Who last updated this entry *

* Returns a reference to this object so that method calls can be chained * together. * * @param lastModifiedBy Who last updated this entry * @return A reference to this updated object so that method calls can be * chained together. */ public EmailChannelResponse withLastModifiedBy(String lastModifiedBy) { this.lastModifiedBy = lastModifiedBy; return this; } /** * Last date this was updated * * @return Last date this was updated */ public String getLastModifiedDate() { return lastModifiedDate; } /** * Last date this was updated * * @param lastModifiedDate Last date this was updated */ public void setLastModifiedDate(String lastModifiedDate) { this.lastModifiedDate = lastModifiedDate; } /** * Last date this was updated *

* Returns a reference to this object so that method calls can be chained * together. * * @param lastModifiedDate Last date this was updated * @return A reference to this updated object so that method calls can be * chained together. */ public EmailChannelResponse withLastModifiedDate(String lastModifiedDate) { this.lastModifiedDate = lastModifiedDate; return this; } /** * Platform type. Will be "EMAIL" * * @return Platform type. Will be "EMAIL" */ public String getPlatform() { return platform; } /** * Platform type. Will be "EMAIL" * * @param platform Platform type. Will be "EMAIL" */ public void setPlatform(String platform) { this.platform = platform; } /** * Platform type. Will be "EMAIL" *

* Returns a reference to this object so that method calls can be chained * together. * * @param platform Platform type. Will be "EMAIL" * @return A reference to this updated object so that method calls can be * chained together. */ public EmailChannelResponse withPlatform(String platform) { this.platform = platform; return this; } /** * The ARN of an IAM Role used to submit events to Mobile Analytics' event * ingestion service * * @return The ARN of an IAM Role used to submit events to Mobile Analytics' * event ingestion service */ public String getRoleArn() { return roleArn; } /** * The ARN of an IAM Role used to submit events to Mobile Analytics' event * ingestion service * * @param roleArn The ARN of an IAM Role used to submit events to Mobile * Analytics' event ingestion service */ public void setRoleArn(String roleArn) { this.roleArn = roleArn; } /** * The ARN of an IAM Role used to submit events to Mobile Analytics' event * ingestion service *

* Returns a reference to this object so that method calls can be chained * together. * * @param roleArn The ARN of an IAM Role used to submit events to Mobile * Analytics' event ingestion service * @return A reference to this updated object so that method calls can be * chained together. */ public EmailChannelResponse withRoleArn(String roleArn) { this.roleArn = roleArn; return this; } /** * Version of channel * * @return Version of channel */ public Integer getVersion() { return version; } /** * Version of channel * * @param version Version of channel */ public void setVersion(Integer version) { this.version = version; } /** * Version of channel *

* Returns a reference to this object so that method calls can be chained * together. * * @param version Version of channel * @return A reference to this updated object so that method calls can be * chained together. */ public EmailChannelResponse withVersion(Integer version) { this.version = version; 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 (getApplicationId() != null) sb.append("ApplicationId: " + getApplicationId() + ","); if (getCreationDate() != null) sb.append("CreationDate: " + getCreationDate() + ","); if (getEnabled() != null) sb.append("Enabled: " + getEnabled() + ","); if (getFromAddress() != null) sb.append("FromAddress: " + getFromAddress() + ","); if (getHasCredential() != null) sb.append("HasCredential: " + getHasCredential() + ","); if (getId() != null) sb.append("Id: " + getId() + ","); if (getIdentity() != null) sb.append("Identity: " + getIdentity() + ","); if (getIsArchived() != null) sb.append("IsArchived: " + getIsArchived() + ","); if (getLastModifiedBy() != null) sb.append("LastModifiedBy: " + getLastModifiedBy() + ","); if (getLastModifiedDate() != null) sb.append("LastModifiedDate: " + getLastModifiedDate() + ","); if (getPlatform() != null) sb.append("Platform: " + getPlatform() + ","); if (getRoleArn() != null) sb.append("RoleArn: " + getRoleArn() + ","); if (getVersion() != null) sb.append("Version: " + getVersion()); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getApplicationId() == null) ? 0 : getApplicationId().hashCode()); hashCode = prime * hashCode + ((getCreationDate() == null) ? 0 : getCreationDate().hashCode()); hashCode = prime * hashCode + ((getEnabled() == null) ? 0 : getEnabled().hashCode()); hashCode = prime * hashCode + ((getFromAddress() == null) ? 0 : getFromAddress().hashCode()); hashCode = prime * hashCode + ((getHasCredential() == null) ? 0 : getHasCredential().hashCode()); hashCode = prime * hashCode + ((getId() == null) ? 0 : getId().hashCode()); hashCode = prime * hashCode + ((getIdentity() == null) ? 0 : getIdentity().hashCode()); hashCode = prime * hashCode + ((getIsArchived() == null) ? 0 : getIsArchived().hashCode()); hashCode = prime * hashCode + ((getLastModifiedBy() == null) ? 0 : getLastModifiedBy().hashCode()); hashCode = prime * hashCode + ((getLastModifiedDate() == null) ? 0 : getLastModifiedDate().hashCode()); hashCode = prime * hashCode + ((getPlatform() == null) ? 0 : getPlatform().hashCode()); hashCode = prime * hashCode + ((getRoleArn() == null) ? 0 : getRoleArn().hashCode()); hashCode = prime * hashCode + ((getVersion() == null) ? 0 : getVersion().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof EmailChannelResponse == false) return false; EmailChannelResponse other = (EmailChannelResponse) obj; if (other.getApplicationId() == null ^ this.getApplicationId() == null) return false; if (other.getApplicationId() != null && other.getApplicationId().equals(this.getApplicationId()) == false) return false; if (other.getCreationDate() == null ^ this.getCreationDate() == null) return false; if (other.getCreationDate() != null && other.getCreationDate().equals(this.getCreationDate()) == false) return false; if (other.getEnabled() == null ^ this.getEnabled() == null) return false; if (other.getEnabled() != null && other.getEnabled().equals(this.getEnabled()) == false) return false; if (other.getFromAddress() == null ^ this.getFromAddress() == null) return false; if (other.getFromAddress() != null && other.getFromAddress().equals(this.getFromAddress()) == false) return false; if (other.getHasCredential() == null ^ this.getHasCredential() == null) return false; if (other.getHasCredential() != null && other.getHasCredential().equals(this.getHasCredential()) == false) return false; if (other.getId() == null ^ this.getId() == null) return false; if (other.getId() != null && other.getId().equals(this.getId()) == false) return false; if (other.getIdentity() == null ^ this.getIdentity() == null) return false; if (other.getIdentity() != null && other.getIdentity().equals(this.getIdentity()) == false) return false; if (other.getIsArchived() == null ^ this.getIsArchived() == null) return false; if (other.getIsArchived() != null && other.getIsArchived().equals(this.getIsArchived()) == false) return false; if (other.getLastModifiedBy() == null ^ this.getLastModifiedBy() == null) return false; if (other.getLastModifiedBy() != null && other.getLastModifiedBy().equals(this.getLastModifiedBy()) == false) return false; if (other.getLastModifiedDate() == null ^ this.getLastModifiedDate() == null) return false; if (other.getLastModifiedDate() != null && other.getLastModifiedDate().equals(this.getLastModifiedDate()) == false) return false; if (other.getPlatform() == null ^ this.getPlatform() == null) return false; if (other.getPlatform() != null && other.getPlatform().equals(this.getPlatform()) == false) return false; if (other.getRoleArn() == null ^ this.getRoleArn() == null) return false; if (other.getRoleArn() != null && other.getRoleArn().equals(this.getRoleArn()) == false) return false; if (other.getVersion() == null ^ this.getVersion() == null) return false; if (other.getVersion() != null && other.getVersion().equals(this.getVersion()) == false) return false; return true; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy