com.tencent.ads.model.KeywordSpec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of marketing-api-java-sdk Show documentation
Show all versions of marketing-api-java-sdk Show documentation
Tencent Ads Mareting-Api Java Sdk
/*
* Marketing API
* Marketing API
*
* OpenAPI spec version: 1.3
*
*
* 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 com.tencent.ads.model;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
/** Keyword人群信息 */
@ApiModel(description = "Keyword人群信息")
public class KeywordSpec {
@SerializedName("include_keyword")
private List includeKeyword = null;
@SerializedName("exclude_keyword")
private List excludeKeyword = null;
public KeywordSpec includeKeyword(List includeKeyword) {
this.includeKeyword = includeKeyword;
return this;
}
public KeywordSpec addIncludeKeywordItem(String includeKeywordItem) {
if (this.includeKeyword == null) {
this.includeKeyword = new ArrayList();
}
this.includeKeyword.add(includeKeywordItem);
return this;
}
/**
* Get includeKeyword
*
* @return includeKeyword
*/
@ApiModelProperty(value = "")
public List getIncludeKeyword() {
return includeKeyword;
}
public void setIncludeKeyword(List includeKeyword) {
this.includeKeyword = includeKeyword;
}
public KeywordSpec excludeKeyword(List excludeKeyword) {
this.excludeKeyword = excludeKeyword;
return this;
}
public KeywordSpec addExcludeKeywordItem(String excludeKeywordItem) {
if (this.excludeKeyword == null) {
this.excludeKeyword = new ArrayList();
}
this.excludeKeyword.add(excludeKeywordItem);
return this;
}
/**
* Get excludeKeyword
*
* @return excludeKeyword
*/
@ApiModelProperty(value = "")
public List getExcludeKeyword() {
return excludeKeyword;
}
public void setExcludeKeyword(List excludeKeyword) {
this.excludeKeyword = excludeKeyword;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
KeywordSpec keywordSpec = (KeywordSpec) o;
return Objects.equals(this.includeKeyword, keywordSpec.includeKeyword)
&& Objects.equals(this.excludeKeyword, keywordSpec.excludeKeyword);
}
@Override
public int hashCode() {
return Objects.hash(includeKeyword, excludeKeyword);
}
@Override
public String toString() {
Gson gson = new Gson();
return gson.toJson(this);
}
/**
* 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 ");
}
}