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

jp.co.yahoo.adsdisplayapi.v15.model.AudienceListServiceDataConnectionStopped 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\"> AudienceListServiceDataConnectionStoppedは、リストが連携停止中かどうかを示します。<br> 連携停止中の顧客データリストにはアップロードできません。<br> 連携停止中のLINE公式アカウントの友だちリスト、LINE公式アカウントをブロック中の友だちリストはリーチ数が0です。<br> このフィールドは、レスポンスの際に返却されますが、リクエストの際には無視されます。 </div> <div lang=\"en\"> AudienceListServiceDataConnectionStopped shows whether the list is data connection stopped.<br> You cannot upload to customer data lists with data connection stopped.<br> The reach count for Friends of LINE Official Account lists with data connection stopped and Friends who blocked LINE Official Account lists with data connection stopped is 0.<br> Although this field will be returned in the response, it will be ignored on input. </div> <hr> <dl class=term> <dt class=\"term__item\">TRUE</dt> <dd class=\"term__desc\"><span lang=\"ja\">連携停止中です。</span><span lang=\"en\">Stopped</span></dd> <dt class=\"term__item\">FALSE</dt> <dd class=\"term__desc\"><span lang=\"ja\">連携中です。</span><span lang=\"en\">In progress</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 AudienceListServiceDataConnectionStopped { TRUE("TRUE"), FALSE("FALSE"), UNKNOWN("UNKNOWN"); private String value; AudienceListServiceDataConnectionStopped(String value) { this.value = value; } @JsonValue public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } @JsonCreator public static AudienceListServiceDataConnectionStopped fromValue(String value) { for (AudienceListServiceDataConnectionStopped b : AudienceListServiceDataConnectionStopped.values()) { if (b.value.equals(value)) { return b; } } return null; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy