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

jp.co.yahoo.adsdisplayapi.v15.model.AudienceListServiceIsCurrentlyTotaling 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: v15 * * * 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.v15.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\"> AudienceListServiceIsCurrentlyTotalingは集計状況を表します。<br> このフィールドは、レスポンスの際に返却されますが、リクエストの際には無視されます。 </div> <div lang=\"en\"> AudienceListServiceIsCurrentlyTotaling displays the count status.<br> Although this field will be returned in the response, it will be ignored on request. </div> <dl class=term> <dt class=\"term__item\">TRUE</dt> <dd class=\"term__desc\"><span lang=\"ja\">初回集計中です。</span><span lang=\"en\">Initial count in progress.</span></dd> <dt class=\"term__item\">FALSE</dt> <dd class=\"term__desc\"><span lang=\"ja\">初回集計が完了しています。</span><span lang=\"en\">Initial count is completed.</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 AudienceListServiceIsCurrentlyTotaling { TRUE("TRUE"), FALSE("FALSE"), UNKNOWN("UNKNOWN"); private String value; AudienceListServiceIsCurrentlyTotaling(String value) { this.value = value; } @JsonValue public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } @JsonCreator public static AudienceListServiceIsCurrentlyTotaling fromValue(String value) { for (AudienceListServiceIsCurrentlyTotaling b : AudienceListServiceIsCurrentlyTotaling.values()) { if (b.value.equals(value)) { return b; } } return null; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy