jp.co.yahoo.adssearchapi.v12.model.BiddingStrategyServiceTargetCpaBiddingScheme 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
The newest version!
/*
* 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\">BiddingStrategyServiceTargetCpaBiddingSchemeオブジェクトは、コンバージョン単価の目標値の自動入札設定情報を表します。<br> このフィールドは、省略可能となります。※ADD時、typeがTARGET_CPAの場合は必須です。</div> <div lang=\"en\">BiddingStrategyServiceTargetCpaBiddingScheme object displays auto bidding setting for Target CPA.<br> This field is optional. *If type is 'TARGET_CPA', this field is required in ADD operation.</div>
*/
@ApiModel(description = "BiddingStrategyServiceTargetCpaBiddingSchemeオブジェクトは、コンバージョン単価の目標値の自動入札設定情報を表します。
このフィールドは、省略可能となります。※ADD時、typeがTARGET_CPAの場合は必須です。 BiddingStrategyServiceTargetCpaBiddingScheme object displays auto bidding setting for Target CPA.
This field is optional. *If type is 'TARGET_CPA', this field is required in ADD operation. ")
@JsonPropertyOrder({
BiddingStrategyServiceTargetCpaBiddingScheme.JSON_PROPERTY_BID_CEILING,
BiddingStrategyServiceTargetCpaBiddingScheme.JSON_PROPERTY_BID_FLOOR,
BiddingStrategyServiceTargetCpaBiddingScheme.JSON_PROPERTY_TARGET_CPA
})
@JsonTypeName("BiddingStrategyServiceTargetCpaBiddingScheme")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class BiddingStrategyServiceTargetCpaBiddingScheme {
public static final String JSON_PROPERTY_BID_CEILING = "bidCeiling";
private Long bidCeiling;
public static final String JSON_PROPERTY_BID_FLOOR = "bidFloor";
private Long bidFloor;
public static final String JSON_PROPERTY_TARGET_CPA = "targetCpa";
private Long targetCpa;
public BiddingStrategyServiceTargetCpaBiddingScheme() {
}
public BiddingStrategyServiceTargetCpaBiddingScheme bidCeiling(Long bidCeiling) {
this.bidCeiling = bidCeiling;
return this;
}
/**
* <div lang=\"ja\">入札価格の上限です。<br>※「0」が設定された場合、上限設定はありません。<br> このフィールドは、いずれの場合でも省略可能となります。</div> <div lang=\"en\">CPC limit.<br>* No limits if "0" is set.<br> This field is optional in any cases.</div>
* @return bidCeiling
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "入札価格の上限です。
※「0」が設定された場合、上限設定はありません。
このフィールドは、いずれの場合でも省略可能となります。 CPC limit.
* No limits if "0" is set.
This field is optional in any cases. ")
@JsonProperty(JSON_PROPERTY_BID_CEILING)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getBidCeiling() {
return bidCeiling;
}
@JsonProperty(JSON_PROPERTY_BID_CEILING)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setBidCeiling(Long bidCeiling) {
this.bidCeiling = bidCeiling;
}
public BiddingStrategyServiceTargetCpaBiddingScheme bidFloor(Long bidFloor) {
this.bidFloor = bidFloor;
return this;
}
/**
* <div lang=\"ja\">入札価格の下限です。<br>※ 設定を解除する場合は「0」を指定します。<br> このフィールドは、いずれの場合でも省略可能となります。</div> <div lang=\"en\">Minimum CPC.<br> * Set "0" to deactivate.<br>This field is optional in any cases.</div>
* @return bidFloor
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "入札価格の下限です。
※ 設定を解除する場合は「0」を指定します。
このフィールドは、いずれの場合でも省略可能となります。 Minimum CPC.
* Set "0" to deactivate.
This field is optional in any cases. ")
@JsonProperty(JSON_PROPERTY_BID_FLOOR)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getBidFloor() {
return bidFloor;
}
@JsonProperty(JSON_PROPERTY_BID_FLOOR)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setBidFloor(Long bidFloor) {
this.bidFloor = bidFloor;
}
public BiddingStrategyServiceTargetCpaBiddingScheme targetCpa(Long targetCpa) {
this.targetCpa = targetCpa;
return this;
}
/**
* <div lang=\"ja\">コンバージョン単価の目標値です(日本円です)。<br> このフィールドは、ADD時は必須となり、SET時は省略可能となります。</div> <div lang=\"en\">Target CPA (JPY).<br> This field is required in ADD operation, and will be optional in SET operation.</div>
* @return targetCpa
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "コンバージョン単価の目標値です(日本円です)。
このフィールドは、ADD時は必須となり、SET時は省略可能となります。 Target CPA (JPY).
This field is required in ADD operation, and will be optional in SET operation. ")
@JsonProperty(JSON_PROPERTY_TARGET_CPA)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getTargetCpa() {
return targetCpa;
}
@JsonProperty(JSON_PROPERTY_TARGET_CPA)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setTargetCpa(Long targetCpa) {
this.targetCpa = targetCpa;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
BiddingStrategyServiceTargetCpaBiddingScheme biddingStrategyServiceTargetCpaBiddingScheme = (BiddingStrategyServiceTargetCpaBiddingScheme) o;
return Objects.equals(this.bidCeiling, biddingStrategyServiceTargetCpaBiddingScheme.bidCeiling) &&
Objects.equals(this.bidFloor, biddingStrategyServiceTargetCpaBiddingScheme.bidFloor) &&
Objects.equals(this.targetCpa, biddingStrategyServiceTargetCpaBiddingScheme.targetCpa);
}
@Override
public int hashCode() {
return Objects.hash(bidCeiling, bidFloor, targetCpa);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BiddingStrategyServiceTargetCpaBiddingScheme {\n");
sb.append(" bidCeiling: ").append(toIndentedString(bidCeiling)).append("\n");
sb.append(" bidFloor: ").append(toIndentedString(bidFloor)).append("\n");
sb.append(" targetCpa: ").append(toIndentedString(targetCpa)).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 ");
}
}