com.criteo.marketing.model.AudiencesGetResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of marketing.java-client Show documentation
Show all versions of marketing.java-client Show documentation
Criteo Marketing SDK for Java
/*
* Marketing API v.1.0
* IMPORTANT: This swagger links to Criteo production environment. Any test applied here will thus impact real campaigns.
*
* OpenAPI spec version: v.1.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.criteo.marketing.model;
import java.util.Objects;
import java.util.Arrays;
import com.criteo.marketing.model.AudienceResponse;
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;
/**
* AudiencesGetResponse
*/
public class AudiencesGetResponse {
public static final String SERIALIZED_NAME_AUDIENCES = "audiences";
@SerializedName(SERIALIZED_NAME_AUDIENCES)
private List audiences = new ArrayList<>();
public AudiencesGetResponse audiences(List audiences) {
this.audiences = audiences;
return this;
}
public AudiencesGetResponse addAudiencesItem(AudienceResponse audiencesItem) {
if (this.audiences == null) {
this.audiences = new ArrayList<>();
}
this.audiences.add(audiencesItem);
return this;
}
/**
* Get audiences
* @return audiences
**/
@ApiModelProperty(value = "")
public List getAudiences() {
return audiences;
}
public void setAudiences(List audiences) {
this.audiences = audiences;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AudiencesGetResponse audiencesGetResponse = (AudiencesGetResponse) o;
return Objects.equals(this.audiences, audiencesGetResponse.audiences);
}
@Override
public int hashCode() {
return Objects.hash(audiences);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AudiencesGetResponse {\n");
sb.append(" audiences: ").append(toIndentedString(audiences)).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 ");
}
}