jp.co.yahoo.adssearchapi.v14.model.CampaignServiceTargetAll 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 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\">サイトリターゲティングにおける配信対象ユーザーの設定内容を表します。<br> ADD時およびSET時、このフィールドは必須となります。</div> <div lang=\"en\">CampaignServiceTargetAll describes the setting of target(include) users on Site Retargeting.<br> This field is required in ADD and SET operation.</div> <dl class=term> <dt class=\"term__item\">ACTIVE</dt> <dd class=\"term__desc\"><span lang=\"ja\">すべてのユーザーを配信対象とします。<br>ターゲットリストのユーザーは入札価格調整率の適用のみ行います。</span><span lang=\"en\">All users are target of ad delivery.<br>Only applying bid adjustment rate is done for users on the target list.</span></dd> <dt class=\"term__item\">DEACTIVE</dt> <dd class=\"term__desc\"><span lang=\"ja\">ターゲットリストのユーザーのみを配信対象とします。<br>また、ターゲットリストのユーザーに対して入札価格調整率を適用します。</span><span lang=\"en\">Users on the Target List are target of ad delivery.<br>And bid adjustment rate is applied to users on the target list.</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 CampaignServiceTargetAll {
ACTIVE("ACTIVE"),
DEACTIVE("DEACTIVE"),
UNKNOWN("UNKNOWN");
private String value;
CampaignServiceTargetAll(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static CampaignServiceTargetAll fromValue(String value) {
for (CampaignServiceTargetAll b : CampaignServiceTargetAll.values()) {
if (b.value.equals(value)) {
return b;
}
}
return null;
}
}