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

jp.co.yahoo.adssearchapi.v14.model.BaseAccountServiceIsTestAccount 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: 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\">BaseAccountServiceIsTestAccountはテストアカウントかどうかを表します。<br> このフィールドは、レスポンスの際に返却されますが、リクエストの際には無視されます。<br> MCCアカウントの場合、このフィールドは<code>FALSE</code>になります。</div> <div lang=\"en\">BaseAccountServiceIsTestAccount indicates whether it is a test account.<br> Although this field will be returned in the response, it will be ignored on input.<br> If isMccAccount is \"TRUE\", this field will be <code>FALSE</code>.</div> <dl class=term> <dt class=\"term__item\">TRUE</dt> <dd class=\"term__desc\"><span lang=\"ja\">テストアカウント</span><span lang=\"en\">Test account.</span></dd> <dt class=\"term__item\">FALSE</dt> <dd class=\"term__desc\"><span lang=\"ja\">Productionアカウント(テストアカウントではありません)</span><span lang=\"en\">Production (non-test) account.</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 BaseAccountServiceIsTestAccount { TRUE("TRUE"), FALSE("FALSE"), UNKNOWN("UNKNOWN"); private String value; BaseAccountServiceIsTestAccount(String value) { this.value = value; } @JsonValue public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } @JsonCreator public static BaseAccountServiceIsTestAccount fromValue(String value) { for (BaseAccountServiceIsTestAccount b : BaseAccountServiceIsTestAccount.values()) { if (b.value.equals(value)) { return b; } } return null; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy