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

jp.co.yahoo.adsdisplayapi.v14.model.CampaignServiceEnhancedCpcEnabled Maven / Gradle / Ivy

The newest version!
/*
 * Yahoo!広告 ディスプレイ広告 API リファレンス / Yahoo! JAPAN Ads Display Ads API Reference
 * 
Yahoo!広告 ディスプレイ広告 APIのWebサービスについて説明します。
Display 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.adsdisplayapi.v14.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonValue; /** * <div lang=\"ja\"> CampaignServiceEnhancedCpcEnabledは、コンバージョン数の最大化設定フラグを指定します。<br> このフィールドがTRUEの場合、操作履歴上の入札戦略は「eCPC」になります。<br> このフィールドはADDおよびSET時に必須となり、REMOVE時に無視されます。 </div> <div lang=\"en\"> CampaignServiceEnhancedCpcEnabled specifies flag of Maximize Conversions.<br> If this field is TRUE, the bidding strategy on audit log is \"eCPC.\"<br> This field is required in ADD and SET operation, and will be ignored in REMOVE operation. </div> <dl class=term> <dt class=\"term__item\">TRUE</dt> <dd class=\"term__desc\"><span lang=\"ja\">項目の削除。</span><span lang=\"en\">removes the information item.</span></dd> <dt class=\"term__item\">FALSE</dt> <dd class=\"term__desc\"><span lang=\"ja\">項目の削除なし。</span><span lang=\"en\">not remove the information item.</span></dd> <dt class=\"term__item\">UNKNOWN</dt> <dd class=\"term__desc\"><span lang=\"ja\">未知の値です。</span><span lang=\"en\">Unknown Value</span></dd> </dl> */ public enum CampaignServiceEnhancedCpcEnabled { TRUE("TRUE"), FALSE("FALSE"), UNKNOWN("UNKNOWN"); private String value; CampaignServiceEnhancedCpcEnabled(String value) { this.value = value; } @JsonValue public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } @JsonCreator public static CampaignServiceEnhancedCpcEnabled fromValue(String value) { for (CampaignServiceEnhancedCpcEnabled b : CampaignServiceEnhancedCpcEnabled.values()) { if (b.value.equals(value)) { return b; } } return null; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy