io.swagger.client.model.CampaignRecipient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticemail-RESTful-API Show documentation
Show all versions of elasticemail-RESTful-API Show documentation
Send your emails with ElasticEmail API
The newest version!
/*
* elasticemail_Restful_api
* Send your emails with ElasticEmail API
*
* OpenAPI spec version: 3.0.1
* Contact: [email protected]
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package io.swagger.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* CampaignRecipient
*/
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2019-03-29T15:32:30.861Z")
public class CampaignRecipient {
@SerializedName("ListNames")
private List listNames = new ArrayList();
@SerializedName("SegmentNames")
private List segmentNames = new ArrayList();
public CampaignRecipient listNames(List listNames) {
this.listNames = listNames;
return this;
}
public CampaignRecipient addListNamesItem(String listNamesItem) {
this.listNames.add(listNamesItem);
return this;
}
/**
* Get listNames
* @return listNames
**/
@ApiModelProperty(required = true, value = "")
public List getListNames() {
return listNames;
}
public void setListNames(List listNames) {
this.listNames = listNames;
}
public CampaignRecipient segmentNames(List segmentNames) {
this.segmentNames = segmentNames;
return this;
}
public CampaignRecipient addSegmentNamesItem(String segmentNamesItem) {
this.segmentNames.add(segmentNamesItem);
return this;
}
/**
* Get segmentNames
* @return segmentNames
**/
@ApiModelProperty(required = true, value = "")
public List getSegmentNames() {
return segmentNames;
}
public void setSegmentNames(List segmentNames) {
this.segmentNames = segmentNames;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CampaignRecipient campaignRecipient = (CampaignRecipient) o;
return Objects.equals(this.listNames, campaignRecipient.listNames) &&
Objects.equals(this.segmentNames, campaignRecipient.segmentNames);
}
@Override
public int hashCode() {
return Objects.hash(listNames, segmentNames);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CampaignRecipient {\n");
sb.append(" listNames: ").append(toIndentedString(listNames)).append("\n");
sb.append(" segmentNames: ").append(toIndentedString(segmentNames)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy