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

com.amazonaws.services.pinpoint.model.SegmentResponse 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;

/**
 * Segment definition.
 */
public class SegmentResponse implements Serializable {
    /**
     * The ID of the application to which the segment applies.
     */
    private String applicationId;

    /**
     * The date the segment was created in ISO 8601 format.
     */
    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 the segment was last updated in ISO 8601 format.
     */
    private String lastModifiedDate;

    /**
     * The name of segment
     */
    private String name;

    /**
     * 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 to which the segment applies. * * @return The ID of the application to which the segment applies. */ public String getApplicationId() { return applicationId; } /** * The ID of the application to which the segment applies. * * @param applicationId The ID of the application to which the segment * applies. */ public void setApplicationId(String applicationId) { this.applicationId = applicationId; } /** * The ID of the application to which the segment applies. *

* Returns a reference to this object so that method calls can be chained * together. * * @param applicationId The ID of the application to which the segment * applies. * @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 the segment was created in ISO 8601 format. * * @return The date the segment was created in ISO 8601 format. */ public String getCreationDate() { return creationDate; } /** * The date the segment was created in ISO 8601 format. * * @param creationDate The date the segment was created in ISO 8601 format. */ public void setCreationDate(String creationDate) { this.creationDate = creationDate; } /** * The date the segment was created in ISO 8601 format. *

* Returns a reference to this object so that method calls can be chained * together. * * @param creationDate The date the segment was created in ISO 8601 format. * @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 the segment was last updated in ISO 8601 format. * * @return The date the segment was last updated in ISO 8601 format. */ public String getLastModifiedDate() { return lastModifiedDate; } /** * The date the segment was last updated in ISO 8601 format. * * @param lastModifiedDate The date the segment was last updated in ISO 8601 * format. */ public void setLastModifiedDate(String lastModifiedDate) { this.lastModifiedDate = lastModifiedDate; } /** * The date the segment was last updated in ISO 8601 format. *

* Returns a reference to this object so that method calls can be chained * together. * * @param lastModifiedDate The date the segment was last updated in ISO 8601 * format. * @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 segment * * @return The name of segment */ public String getName() { return name; } /** * The name of segment * * @param name The name of segment */ public void setName(String name) { this.name = name; } /** * The name of segment *

* Returns a reference to this object so that method calls can be chained * together. * * @param name The name of 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; } /** * 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 (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 + ((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.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; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy