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

jp.co.yahoo.adsdisplayapi.v15.model.AudienceListServiceIsZeroOrCurrentlyTotaling 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\"> AudienceListServiceIsZeroOrCurrentlyTotalingはリーチが0もしくはリストが集計中かどうかを表します。<br> このフラグがTRUEかつdeliveryStatusがPAUSEDの場合に<a href=\"https://ads-help.yahoo-net.jp/s/article/H000044408?language=ja#c03\" target=\"_blank\">ヘルプ</a>に記載の「リストが未連携の状態」の可能性があります。<br> このフィールドは、レスポンスの際に返却されますが、リクエストの際には無視されます。 </div> <div lang=\"en\"> AudienceListServiceIsZeroOrCurrentlyTotaling displays whether the reach is 0 or the list is currently being counted.<br> When this flag is TRUE and the deliveryStatus is PAUSED, there is a possibility that the 'list is in an unlinked state' as mentioned in <a href=\"https://ads-help.yahoo-net.jp/s/article/H000044408?language=en_US#c03\" target=\"_blank\">the help documentation</a>.<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\">リーチが0もしくはリストが集計中です。</span><span lang=\"en\">The reach is 0 or the list is currently being counted.</span></dd> <dt class=\"term__item\">FALSE</dt> <dd class=\"term__desc\"><span lang=\"ja\">リーチが蓄積されています。</span><span lang=\"en\">The reach is being accumulated.</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 AudienceListServiceIsZeroOrCurrentlyTotaling { TRUE("TRUE"), FALSE("FALSE"), UNKNOWN("UNKNOWN"); private String value; AudienceListServiceIsZeroOrCurrentlyTotaling(String value) { this.value = value; } @JsonValue public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } @JsonCreator public static AudienceListServiceIsZeroOrCurrentlyTotaling fromValue(String value) { for (AudienceListServiceIsZeroOrCurrentlyTotaling b : AudienceListServiceIsZeroOrCurrentlyTotaling.values()) { if (b.value.equals(value)) { return b; } } return null; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy