![JAR search and dependency download from the Maven repository](/logo.png)
jp.co.yahoo.adsdisplayapi.v13.model.AudienceListServiceYahooJapanAudienceDiscoveryAudienceList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ads-display-api-lib Show documentation
Show all versions of ads-display-api-lib Show documentation
Yahoo! JAPAN Ads Display Ads API library for Java
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: 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.adsdisplayapi.v13.model;
import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonTypeName;
/**
* <div lang=\"ja\"> AudienceListServiceYahooJapanAudienceDiscoveryAudienceListオブジェクトは、オーディエンスリスト(Yahoo! Audience Discovery)を表します。<br> このフィールドは、SET時に省略可能、ADD時に指定不可となります。<br> ※audienceListTypeがYAHOO_JAPAN_AUDIENCE_DISCOVERYの場合は、任意で指定できます。 </div> <div lang=\"en\"> AudienceListServiceCustomAudienceList object displays audience list (Yahoo! JAPAN Audience Discovery)<br> This field is optional in SET operation, and cannot be specified in ADD operation.<br> *If audienceListType is YAHOO_JAPAN_AUDIENCE_DISCOVERY, this field can be optionally specified. </div>
*/
@ApiModel(description = " AudienceListServiceYahooJapanAudienceDiscoveryAudienceListオブジェクトは、オーディエンスリスト(Yahoo! Audience Discovery)を表します。
このフィールドは、SET時に省略可能、ADD時に指定不可となります。
※audienceListTypeがYAHOO_JAPAN_AUDIENCE_DISCOVERYの場合は、任意で指定できます。 AudienceListServiceCustomAudienceList object displays audience list (Yahoo! JAPAN Audience Discovery)
This field is optional in SET operation, and cannot be specified in ADD operation.
*If audienceListType is YAHOO_JAPAN_AUDIENCE_DISCOVERY, this field can be optionally specified. ")
@JsonPropertyOrder({
AudienceListServiceYahooJapanAudienceDiscoveryAudienceList.JSON_PROPERTY_REACH_PERIOD
})
@JsonTypeName("AudienceListServiceYahooJapanAudienceDiscoveryAudienceList")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class AudienceListServiceYahooJapanAudienceDiscoveryAudienceList {
public static final String JSON_PROPERTY_REACH_PERIOD = "reachPeriod";
private Integer reachPeriod;
public AudienceListServiceYahooJapanAudienceDiscoveryAudienceList() {
}
public AudienceListServiceYahooJapanAudienceDiscoveryAudienceList reachPeriod(Integer reachPeriod) {
this.reachPeriod = reachPeriod;
return this;
}
/**
* <div lang=\"ja\"> リーチの蓄積期間(1日~60日)です。<br> このフィールドは、SET時に省略可能、ADD時に指定不可となります。<br> </div> <div lang=\"en\"> Cookies validation period. (1 - 60 days) <br> This field is optional in SET operation, and cannot be specified in ADD operation. </div>
* @return reachPeriod
**/
@javax.annotation.Nullable
@ApiModelProperty(value = " リーチの蓄積期間(1日~60日)です。
このフィールドは、SET時に省略可能、ADD時に指定不可となります。
Cookies validation period. (1 - 60 days)
This field is optional in SET operation, and cannot be specified in ADD operation. ")
@JsonProperty(JSON_PROPERTY_REACH_PERIOD)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Integer getReachPeriod() {
return reachPeriod;
}
@JsonProperty(JSON_PROPERTY_REACH_PERIOD)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setReachPeriod(Integer reachPeriod) {
this.reachPeriod = reachPeriod;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AudienceListServiceYahooJapanAudienceDiscoveryAudienceList audienceListServiceYahooJapanAudienceDiscoveryAudienceList = (AudienceListServiceYahooJapanAudienceDiscoveryAudienceList) o;
return Objects.equals(this.reachPeriod, audienceListServiceYahooJapanAudienceDiscoveryAudienceList.reachPeriod);
}
@Override
public int hashCode() {
return Objects.hash(reachPeriod);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AudienceListServiceYahooJapanAudienceDiscoveryAudienceList {\n");
sb.append(" reachPeriod: ").append(toIndentedString(reachPeriod)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy