All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jp.co.yahoo.adssearchapi.v13.model.CampaignServiceTargetRoasBiddingScheme Maven / Gradle / Ivy

There is a newer version: 8.1.1-spring5
Show 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.
OpenAPI Specification
Best Practice
Best Practice
* * The version of the OpenAPI document: v13 * * * 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.v13.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\">CampaignServiceTargetRoasBiddingSchemeオブジェクトは、広告費用対効果の目標値の自動入札設定情報を表します。 (BiddingStrategyService以外用のオブジェクトです。)<br> ADD時、BiddingStrategyTypeがTARGET_ROASの場合、必須となり、それ以外では省略可能となります。</div> <div lang=\"en\">CampaignServiceTargetRoasBiddingScheme object displays auto bidding setting for Target ROAS. *This is an object for anything other than BiddingStrategyService.<br> This field is required when BiddingStrategyType is 'TARGET_ROAS' in ADD operation. For other BiddingStrategyType, this field is optional in ADD operation.</div> */ @ApiModel(description = "
CampaignServiceTargetRoasBiddingSchemeオブジェクトは、広告費用対効果の目標値の自動入札設定情報を表します。 (BiddingStrategyService以外用のオブジェクトです。)
ADD時、BiddingStrategyTypeがTARGET_ROASの場合、必須となり、それ以外では省略可能となります。
CampaignServiceTargetRoasBiddingScheme object displays auto bidding setting for Target ROAS. *This is an object for anything other than BiddingStrategyService.
This field is required when BiddingStrategyType is 'TARGET_ROAS' in ADD operation. For other BiddingStrategyType, this field is optional in ADD operation.
") @JsonPropertyOrder({ CampaignServiceTargetRoasBiddingScheme.JSON_PROPERTY_BID_CEILING, CampaignServiceTargetRoasBiddingScheme.JSON_PROPERTY_BID_FLOOR, CampaignServiceTargetRoasBiddingScheme.JSON_PROPERTY_TARGET_ROAS }) @JsonTypeName("CampaignServiceTargetRoasBiddingScheme") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class CampaignServiceTargetRoasBiddingScheme { 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_ROAS = "targetRoas"; private Double targetRoas; public CampaignServiceTargetRoasBiddingScheme() { } public CampaignServiceTargetRoasBiddingScheme bidCeiling(Long bidCeiling) { this.bidCeiling = bidCeiling; return this; } /** * <div lang=\"ja\">入札価格の上限です。<br>このフィールドの追加と編集は廃止され、現在設定できません。</div> <div lang=\"en\">Limit of bid (CPC).<br>Adding and editing this field is obsolete. Currently not available.</div> * @return bidCeiling **/ @javax.annotation.Nullable @ApiModelProperty(value = "
入札価格の上限です。
このフィールドの追加と編集は廃止され、現在設定できません。
Limit of bid (CPC).
Adding and editing this field is obsolete. Currently not available.
") @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 CampaignServiceTargetRoasBiddingScheme bidFloor(Long bidFloor) { this.bidFloor = bidFloor; return this; } /** * <div lang=\"ja\">入札価格の下限です。<br>このフィールドの追加と編集は廃止され、現在設定できません。</div> <div lang=\"en\">Minimum CPC.<br>Adding and editing this field is obsolete. Currently not available.</div> * @return bidFloor **/ @javax.annotation.Nullable @ApiModelProperty(value = "
入札価格の下限です。
このフィールドの追加と編集は廃止され、現在設定できません。
Minimum CPC.
Adding and editing this field is obsolete. Currently not available.
") @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 CampaignServiceTargetRoasBiddingScheme targetRoas(Double targetRoas) { this.targetRoas = targetRoas; return this; } /** * <div lang=\"ja\">広告費用対効果の目標値です。<br> 0.01 ~ 1000.00(1% ~ 100000%)の範囲内のみ 許容します。<br> ADD時およびSET時、このフィールドは必須となります。<br> ※ROAS:Return On Advertising Spend</div> <div lang=\"en\">Target ROAS (Return On Advertising Spend)<br> * Limit range: 0.01 - 1000.00 (1% - 100000%)<br> This field is required in ADD and SET operation.</div> * @return targetRoas **/ @javax.annotation.Nullable @ApiModelProperty(value = "
広告費用対効果の目標値です。
0.01 ~ 1000.00(1% ~ 100000%)の範囲内のみ 許容します。
ADD時およびSET時、このフィールドは必須となります。
※ROAS:Return On Advertising Spend
Target ROAS (Return On Advertising Spend)
* Limit range: 0.01 - 1000.00 (1% - 100000%)
This field is required in ADD and SET operation.
") @JsonProperty(JSON_PROPERTY_TARGET_ROAS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public Double getTargetRoas() { return targetRoas; } @JsonProperty(JSON_PROPERTY_TARGET_ROAS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setTargetRoas(Double targetRoas) { this.targetRoas = targetRoas; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CampaignServiceTargetRoasBiddingScheme campaignServiceTargetRoasBiddingScheme = (CampaignServiceTargetRoasBiddingScheme) o; return Objects.equals(this.bidCeiling, campaignServiceTargetRoasBiddingScheme.bidCeiling) && Objects.equals(this.bidFloor, campaignServiceTargetRoasBiddingScheme.bidFloor) && Objects.equals(this.targetRoas, campaignServiceTargetRoasBiddingScheme.targetRoas); } @Override public int hashCode() { return Objects.hash(bidCeiling, bidFloor, targetRoas); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CampaignServiceTargetRoasBiddingScheme {\n"); sb.append(" bidCeiling: ").append(toIndentedString(bidCeiling)).append("\n"); sb.append(" bidFloor: ").append(toIndentedString(bidFloor)).append("\n"); sb.append(" targetRoas: ").append(toIndentedString(targetRoas)).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 "); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy