/* * Copyright 2010-2019 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; /** * Segment definition. */ public class SegmentResponse implements Serializable { /** * The ID of the application that the segment applies to. */ private String applicationId; /** * The date and time when the segment was created. */ private String creationDate; /** * The segment dimensions attributes. */ private SegmentDimensions dimensions; /** * The unique segment ID. */ private String id; /** * The import job settings. */ private SegmentImportResource importDefinition; /** * The date and time when the segment was last modified. */ private String lastModifiedDate; /** * The name of the segment. */ private String name; /** * A segment group, which consists of zero or more source segments, plus * dimensions that are applied to those source segments. */ private SegmentGroupList segmentGroups; /** * The segment type: DIMENSIONAL - A dynamic segment built from selection * criteria based on endpoint data reported by your app. You create this * type of segment by using the segment builder in the Amazon Pinpoint * console or by making a POST request to the segments resource. IMPORT - A * static segment built from an imported set of endpoint definitions. You * create this type of segment by importing a segment in the Amazon Pinpoint * console or by making a POST request to the jobs/import resource. *
* Constraints:
* Allowed Values: DIMENSIONAL, IMPORT
*/
private String segmentType;
/**
* The segment version number.
*/
private Integer version;
/**
* The ID of the application that the segment applies to.
*
* @return The ID of the application that the segment applies to.
*/
public String getApplicationId() {
return applicationId;
}
/**
* The ID of the application that the segment applies to.
*
* @param applicationId The ID of the application that the segment applies
* to.
*/
public void setApplicationId(String applicationId) {
this.applicationId = applicationId;
}
/**
* The ID of the application that the segment applies to.
*
* Returns a reference to this object so that method calls can be chained * together. * * @param applicationId The ID of the application that the segment applies * to. * @return A reference to this updated object so that method calls can be * chained together. */ public SegmentResponse withApplicationId(String applicationId) { this.applicationId = applicationId; return this; } /** * The date and time when the segment was created. * * @return The date and time when the segment was created. */ public String getCreationDate() { return creationDate; } /** * The date and time when the segment was created. * * @param creationDate The date and time when the segment was created. */ public void setCreationDate(String creationDate) { this.creationDate = creationDate; } /** * The date and time when the segment was created. *
* Returns a reference to this object so that method calls can be chained * together. * * @param creationDate The date and time when the segment was created. * @return A reference to this updated object so that method calls can be * chained together. */ public SegmentResponse withCreationDate(String creationDate) { this.creationDate = creationDate; return this; } /** * The segment dimensions attributes. * * @return The segment dimensions attributes. */ public SegmentDimensions getDimensions() { return dimensions; } /** * The segment dimensions attributes. * * @param dimensions The segment dimensions attributes. */ public void setDimensions(SegmentDimensions dimensions) { this.dimensions = dimensions; } /** * The segment dimensions attributes. *
* Returns a reference to this object so that method calls can be chained * together. * * @param dimensions The segment dimensions attributes. * @return A reference to this updated object so that method calls can be * chained together. */ public SegmentResponse withDimensions(SegmentDimensions dimensions) { this.dimensions = dimensions; return this; } /** * The unique segment ID. * * @return The unique segment ID. */ public String getId() { return id; } /** * The unique segment ID. * * @param id The unique segment ID. */ public void setId(String id) { this.id = id; } /** * The unique segment ID. *
* Returns a reference to this object so that method calls can be chained * together. * * @param id The unique segment ID. * @return A reference to this updated object so that method calls can be * chained together. */ public SegmentResponse withId(String id) { this.id = id; return this; } /** * The import job settings. * * @return The import job settings. */ public SegmentImportResource getImportDefinition() { return importDefinition; } /** * The import job settings. * * @param importDefinition The import job settings. */ public void setImportDefinition(SegmentImportResource importDefinition) { this.importDefinition = importDefinition; } /** * The import job settings. *
* Returns a reference to this object so that method calls can be chained * together. * * @param importDefinition The import job settings. * @return A reference to this updated object so that method calls can be * chained together. */ public SegmentResponse withImportDefinition(SegmentImportResource importDefinition) { this.importDefinition = importDefinition; return this; } /** * The date and time when the segment was last modified. * * @return The date and time when the segment was last modified. */ public String getLastModifiedDate() { return lastModifiedDate; } /** * The date and time when the segment was last modified. * * @param lastModifiedDate The date and time when the segment was last * modified. */ public void setLastModifiedDate(String lastModifiedDate) { this.lastModifiedDate = lastModifiedDate; } /** * The date and time when the segment was last modified. *
* Returns a reference to this object so that method calls can be chained * together. * * @param lastModifiedDate The date and time when the segment was last * modified. * @return A reference to this updated object so that method calls can be * chained together. */ public SegmentResponse withLastModifiedDate(String lastModifiedDate) { this.lastModifiedDate = lastModifiedDate; return this; } /** * The name of the segment. * * @return The name of the segment. */ public String getName() { return name; } /** * The name of the segment. * * @param name The name of the segment. */ public void setName(String name) { this.name = name; } /** * The name of the segment. *
* Returns a reference to this object so that method calls can be chained * together. * * @param name The name of the segment. * @return A reference to this updated object so that method calls can be * chained together. */ public SegmentResponse withName(String name) { this.name = name; return this; } /** * A segment group, which consists of zero or more source segments, plus * dimensions that are applied to those source segments. * * @return A segment group, which consists of zero or more source segments, * plus dimensions that are applied to those source segments. */ public SegmentGroupList getSegmentGroups() { return segmentGroups; } /** * A segment group, which consists of zero or more source segments, plus * dimensions that are applied to those source segments. * * @param segmentGroups A segment group, which consists of zero or more * source segments, plus dimensions that are applied to those * source segments. */ public void setSegmentGroups(SegmentGroupList segmentGroups) { this.segmentGroups = segmentGroups; } /** * A segment group, which consists of zero or more source segments, plus * dimensions that are applied to those source segments. *
* Returns a reference to this object so that method calls can be chained * together. * * @param segmentGroups A segment group, which consists of zero or more * source segments, plus dimensions that are applied to those * source segments. * @return A reference to this updated object so that method calls can be * chained together. */ public SegmentResponse withSegmentGroups(SegmentGroupList segmentGroups) { this.segmentGroups = segmentGroups; return this; } /** * The segment type: DIMENSIONAL - A dynamic segment built from selection * criteria based on endpoint data reported by your app. You create this * type of segment by using the segment builder in the Amazon Pinpoint * console or by making a POST request to the segments resource. IMPORT - A * static segment built from an imported set of endpoint definitions. You * create this type of segment by importing a segment in the Amazon Pinpoint * console or by making a POST request to the jobs/import resource. *
* Constraints:
* Allowed Values: DIMENSIONAL, IMPORT
*
* @return The segment type: DIMENSIONAL - A dynamic segment built from
* selection criteria based on endpoint data reported by your app.
* You create this type of segment by using the segment builder in
* the Amazon Pinpoint console or by making a POST request to the
* segments resource. IMPORT - A static segment built from an
* imported set of endpoint definitions. You create this type of
* segment by importing a segment in the Amazon Pinpoint console or
* by making a POST request to the jobs/import resource.
* @see SegmentType
*/
public String getSegmentType() {
return segmentType;
}
/**
* The segment type: DIMENSIONAL - A dynamic segment built from selection
* criteria based on endpoint data reported by your app. You create this
* type of segment by using the segment builder in the Amazon Pinpoint
* console or by making a POST request to the segments resource. IMPORT - A
* static segment built from an imported set of endpoint definitions. You
* create this type of segment by importing a segment in the Amazon Pinpoint
* console or by making a POST request to the jobs/import resource.
*
* Constraints:
* Allowed Values: DIMENSIONAL, IMPORT
*
* @param segmentType The segment type: DIMENSIONAL - A dynamic segment
* built from selection criteria based on endpoint data reported
* by your app. You create this type of segment by using the
* segment builder in the Amazon Pinpoint console or by making a
* POST request to the segments resource. IMPORT - A static
* segment built from an imported set of endpoint definitions.
* You create this type of segment by importing a segment in the
* Amazon Pinpoint console or by making a POST request to the
* jobs/import resource.
* @see SegmentType
*/
public void setSegmentType(String segmentType) {
this.segmentType = segmentType;
}
/**
* The segment type: DIMENSIONAL - A dynamic segment built from selection
* criteria based on endpoint data reported by your app. You create this
* type of segment by using the segment builder in the Amazon Pinpoint
* console or by making a POST request to the segments resource. IMPORT - A
* static segment built from an imported set of endpoint definitions. You
* create this type of segment by importing a segment in the Amazon Pinpoint
* console or by making a POST request to the jobs/import resource.
*
* Returns a reference to this object so that method calls can be chained * together. *
* Constraints:
* Allowed Values: DIMENSIONAL, IMPORT
*
* @param segmentType The segment type: DIMENSIONAL - A dynamic segment
* built from selection criteria based on endpoint data reported
* by your app. You create this type of segment by using the
* segment builder in the Amazon Pinpoint console or by making a
* POST request to the segments resource. IMPORT - A static
* segment built from an imported set of endpoint definitions.
* You create this type of segment by importing a segment in the
* Amazon Pinpoint console or by making a POST request to the
* jobs/import resource.
* @return A reference to this updated object so that method calls can be
* chained together.
* @see SegmentType
*/
public SegmentResponse withSegmentType(String segmentType) {
this.segmentType = segmentType;
return this;
}
/**
* The segment type: DIMENSIONAL - A dynamic segment built from selection
* criteria based on endpoint data reported by your app. You create this
* type of segment by using the segment builder in the Amazon Pinpoint
* console or by making a POST request to the segments resource. IMPORT - A
* static segment built from an imported set of endpoint definitions. You
* create this type of segment by importing a segment in the Amazon Pinpoint
* console or by making a POST request to the jobs/import resource.
*
* Constraints:
* Allowed Values: DIMENSIONAL, IMPORT
*
* @param segmentType The segment type: DIMENSIONAL - A dynamic segment
* built from selection criteria based on endpoint data reported
* by your app. You create this type of segment by using the
* segment builder in the Amazon Pinpoint console or by making a
* POST request to the segments resource. IMPORT - A static
* segment built from an imported set of endpoint definitions.
* You create this type of segment by importing a segment in the
* Amazon Pinpoint console or by making a POST request to the
* jobs/import resource.
* @see SegmentType
*/
public void setSegmentType(SegmentType segmentType) {
this.segmentType = segmentType.toString();
}
/**
* The segment type: DIMENSIONAL - A dynamic segment built from selection
* criteria based on endpoint data reported by your app. You create this
* type of segment by using the segment builder in the Amazon Pinpoint
* console or by making a POST request to the segments resource. IMPORT - A
* static segment built from an imported set of endpoint definitions. You
* create this type of segment by importing a segment in the Amazon Pinpoint
* console or by making a POST request to the jobs/import resource.
*
* Returns a reference to this object so that method calls can be chained * together. *
* Constraints:
* Allowed Values: DIMENSIONAL, IMPORT
*
* @param segmentType The segment type: DIMENSIONAL - A dynamic segment
* built from selection criteria based on endpoint data reported
* by your app. You create this type of segment by using the
* segment builder in the Amazon Pinpoint console or by making a
* POST request to the segments resource. IMPORT - A static
* segment built from an imported set of endpoint definitions.
* You create this type of segment by importing a segment in the
* Amazon Pinpoint console or by making a POST request to the
* jobs/import resource.
* @return A reference to this updated object so that method calls can be
* chained together.
* @see SegmentType
*/
public SegmentResponse withSegmentType(SegmentType segmentType) {
this.segmentType = segmentType.toString();
return this;
}
/**
* The segment version number.
*
* @return The segment version number.
*/
public Integer getVersion() {
return version;
}
/**
* The segment version number.
*
* @param version The segment version number.
*/
public void setVersion(Integer version) {
this.version = version;
}
/**
* The segment version number.
*
* Returns a reference to this object so that method calls can be chained * together. * * @param version The segment version number. * @return A reference to this updated object so that method calls can be * chained together. */ public SegmentResponse 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 (getDimensions() != null) sb.append("Dimensions: " + getDimensions() + ","); if (getId() != null) sb.append("Id: " + getId() + ","); if (getImportDefinition() != null) sb.append("ImportDefinition: " + getImportDefinition() + ","); if (getLastModifiedDate() != null) sb.append("LastModifiedDate: " + getLastModifiedDate() + ","); if (getName() != null) sb.append("Name: " + getName() + ","); if (getSegmentGroups() != null) sb.append("SegmentGroups: " + getSegmentGroups() + ","); if (getSegmentType() != null) sb.append("SegmentType: " + getSegmentType() + ","); 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 + ((getDimensions() == null) ? 0 : getDimensions().hashCode()); hashCode = prime * hashCode + ((getId() == null) ? 0 : getId().hashCode()); hashCode = prime * hashCode + ((getImportDefinition() == null) ? 0 : getImportDefinition().hashCode()); hashCode = prime * hashCode + ((getLastModifiedDate() == null) ? 0 : getLastModifiedDate().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getSegmentGroups() == null) ? 0 : getSegmentGroups().hashCode()); hashCode = prime * hashCode + ((getSegmentType() == null) ? 0 : getSegmentType().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 SegmentResponse == false) return false; SegmentResponse other = (SegmentResponse) 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.getDimensions() == null ^ this.getDimensions() == null) return false; if (other.getDimensions() != null && other.getDimensions().equals(this.getDimensions()) == 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.getImportDefinition() == null ^ this.getImportDefinition() == null) return false; if (other.getImportDefinition() != null && other.getImportDefinition().equals(this.getImportDefinition()) == 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.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getSegmentGroups() == null ^ this.getSegmentGroups() == null) return false; if (other.getSegmentGroups() != null && other.getSegmentGroups().equals(this.getSegmentGroups()) == false) return false; if (other.getSegmentType() == null ^ this.getSegmentType() == null) return false; if (other.getSegmentType() != null && other.getSegmentType().equals(this.getSegmentType()) == 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; } }