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

jp.co.yahoo.adssearchapi.v13.model.DictionaryServiceGeographicLocationStatus 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 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\">DictionaryServiceGeographicLocationStatusは、対象地域のステータスを示します。</div> <div lang=\"en\">Status of geographic location.</div> <dl class=term> <dt class=\"term__item\">ACTIVE</dt> <dd class=\"term__desc\"><span lang=\"ja\">ターゲティング可能な状態。</span><span lang=\"en\">Status when targeting is possible</span></dd> <dt class=\"term__item\">OBSOLETE</dt> <dd class=\"term__desc\"><span lang=\"ja\">廃止のためターゲティング不可能な状態。</span><span lang=\"en\">Status when targeting is not possible, because it is abolished</span></dd> <dt class=\"term__item\">PHASING_OUT</dt> <dd class=\"term__desc\"><span lang=\"ja\">まもなく廃止またはターゲティング不可能になる状態。</span><span lang=\"en\">Status when it soon be abolished, or targeting will become impossible</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 DictionaryServiceGeographicLocationStatus { ACTIVE("ACTIVE"), OBSOLETE("OBSOLETE"), PHASING_OUT("PHASING_OUT"), UNKNOWN("UNKNOWN"); private String value; DictionaryServiceGeographicLocationStatus(String value) { this.value = value; } @JsonValue public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } @JsonCreator public static DictionaryServiceGeographicLocationStatus fromValue(String value) { for (DictionaryServiceGeographicLocationStatus b : DictionaryServiceGeographicLocationStatus.values()) { if (b.value.equals(value)) { return b; } } return null; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy