jp.co.yahoo.adssearchapi.v12.model.RetargetingListServiceCustomKeyRuleItem 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: v12
*
*
* 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.v12.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 com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonTypeName;
/**
* <div lang=\"ja\">RetargetingListServiceCustomKeyRuleItemは、カスタムキールールの評価式を保持するオブジェクトです。<br> ADDおよびSET時、このフィールドは省略可能となります。<br>ruleTypeがCUSTOM_KEY_RULEの場合、ADDおよびSET時にこのフィールドは必須となります。</div> <div lang=\"en\">RetargetingListServiceCustomKeyRuleItem is an object that holds evaluation of custom key rules. <br> This field is optional in ADD and SET operation.<br> If ruleType is CUSTOM_KEY_RULE, this field is required in ADD and SET operation.</div>
*/
@ApiModel(description = "RetargetingListServiceCustomKeyRuleItemは、カスタムキールールの評価式を保持するオブジェクトです。
ADDおよびSET時、このフィールドは省略可能となります。
ruleTypeがCUSTOM_KEY_RULEの場合、ADDおよびSET時にこのフィールドは必須となります。 RetargetingListServiceCustomKeyRuleItem is an object that holds evaluation of custom key rules.
This field is optional in ADD and SET operation.
If ruleType is CUSTOM_KEY_RULE, this field is required in ADD and SET operation. ")
@JsonPropertyOrder({
RetargetingListServiceCustomKeyRuleItem.JSON_PROPERTY_TEXT_KEY
})
@JsonTypeName("RetargetingListServiceCustomKeyRuleItem")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class RetargetingListServiceCustomKeyRuleItem {
public static final String JSON_PROPERTY_TEXT_KEY = "textKey";
private String textKey;
public RetargetingListServiceCustomKeyRuleItem() {
}
public RetargetingListServiceCustomKeyRuleItem textKey(String textKey) {
this.textKey = textKey;
return this;
}
/**
* <div lang=\"ja\">評価項目です。<br> ADDおよびSET時、このフィールドは必須となります。</div><div lang=\"en\">Evaluation item.<br> This field is required in ADD and SET operation.</div>
* @return textKey
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "評価項目です。
ADDおよびSET時、このフィールドは必須となります。Evaluation item.
This field is required in ADD and SET operation. ")
@JsonProperty(JSON_PROPERTY_TEXT_KEY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getTextKey() {
return textKey;
}
@JsonProperty(JSON_PROPERTY_TEXT_KEY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setTextKey(String textKey) {
this.textKey = textKey;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
RetargetingListServiceCustomKeyRuleItem retargetingListServiceCustomKeyRuleItem = (RetargetingListServiceCustomKeyRuleItem) o;
return Objects.equals(this.textKey, retargetingListServiceCustomKeyRuleItem.textKey);
}
@Override
public int hashCode() {
return Objects.hash(textKey);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class RetargetingListServiceCustomKeyRuleItem {\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 ");
}
}