jp.co.yahoo.adssearchapi.v14.model.RetargetingListServiceCustomKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ads-search-api-lib Show documentation
Show all versions of ads-search-api-lib Show documentation
Yahoo! JAPAN Ads Search Ads API library for Java
/*
* Yahoo!広告 検索広告 API リファレンス / Yahoo! JAPAN Ads Search Ads API Reference
* Yahoo!広告 検索広告 APIのWebサービスについて説明します。 Search Ads API Web Services supported in Yahoo! JAPAN Ads API.
*
* The version of the OpenAPI document: v14
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package jp.co.yahoo.adssearchapi.v14.model;
import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonTypeName;
/**
* <div lang=\"ja\">RetargetingListServiceCustomKeyは、カスタムキールールの評価式を保持するオブジェクトです。</div> <div lang=\"en\">RetargetingListServiceCustomKey is an object that holds evaluation of custom key rules.</div>
*/
@ApiModel(description = "RetargetingListServiceCustomKeyは、カスタムキールールの評価式を保持するオブジェクトです。 RetargetingListServiceCustomKey is an object that holds evaluation of custom key rules. ")
@JsonPropertyOrder({
RetargetingListServiceCustomKey.JSON_PROPERTY_TEXT_KEY
})
@JsonTypeName("RetargetingListServiceCustomKey")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class RetargetingListServiceCustomKey {
public static final String JSON_PROPERTY_TEXT_KEY = "textKey";
private List textKey = null;
public RetargetingListServiceCustomKey() {
}
public RetargetingListServiceCustomKey textKey(List textKey) {
this.textKey = textKey;
return this;
}
public RetargetingListServiceCustomKey addTextKeyItem(String textKeyItem) {
if (this.textKey == null) {
this.textKey = new ArrayList<>();
}
this.textKey.add(textKeyItem);
return this;
}
/**
* <div lang=\"ja\">評価項目</div> <div lang=\"en\">Evaluation items.</div>
* @return textKey
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "評価項目 Evaluation items. ")
@JsonProperty(JSON_PROPERTY_TEXT_KEY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List getTextKey() {
return textKey;
}
@JsonProperty(JSON_PROPERTY_TEXT_KEY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setTextKey(List textKey) {
this.textKey = textKey;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
RetargetingListServiceCustomKey retargetingListServiceCustomKey = (RetargetingListServiceCustomKey) o;
return Objects.equals(this.textKey, retargetingListServiceCustomKey.textKey);
}
@Override
public int hashCode() {
return Objects.hash(textKey);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class RetargetingListServiceCustomKey {\n");
sb.append(" textKey: ").append(toIndentedString(textKey)).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(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}