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

jp.co.yahoo.adsdisplayapi.v15.model.AudienceListServiceData 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 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\"> AudienceListServiceDataオブジェクトは、オーディエンスリストを表します。<br> このフィールドは、ADDおよびSET時に必須となり、REMOVE時に無視されます。 </div> <div lang=\"en\"> AudienceListServiceData object displays the audience list. <br> This field is required in ADD and SET operation, and will be ignored in REMOVE operation. </div> */ @ApiModel(description = "
AudienceListServiceDataオブジェクトは、オーディエンスリストを表します。
このフィールドは、ADDおよびSET時に必須となり、REMOVE時に無視されます。
AudienceListServiceData object displays the audience list.
This field is required in ADD and SET operation, and will be ignored in REMOVE operation.
") @JsonPropertyOrder({ AudienceListServiceData.JSON_PROPERTY_AUDIENCE_LIST_ID, AudienceListServiceData.JSON_PROPERTY_AUDIENCE_LIST_NAME, AudienceListServiceData.JSON_PROPERTY_AUDIENCE_LIST_NAME_EN }) @JsonTypeName("AudienceListServiceData") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class AudienceListServiceData { public static final String JSON_PROPERTY_AUDIENCE_LIST_ID = "audienceListId"; private Long audienceListId; public static final String JSON_PROPERTY_AUDIENCE_LIST_NAME = "audienceListName"; private String audienceListName; public static final String JSON_PROPERTY_AUDIENCE_LIST_NAME_EN = "audienceListNameEn"; private String audienceListNameEn; public AudienceListServiceData() { } public AudienceListServiceData audienceListId(Long audienceListId) { this.audienceListId = audienceListId; return this; } /** * <div lang=\"ja\"> 組み合わせ対象のオーディエンスリストIDです。<br> このフィールドは、ADDおよびSET時に必須となります。 </div> <div lang=\"en\"> Audience list ID that is subject to the combination.<br> This field is required in ADD and SET operation. </div> * @return audienceListId **/ @javax.annotation.Nullable @ApiModelProperty(value = "
組み合わせ対象のオーディエンスリストIDです。
このフィールドは、ADDおよびSET時に必須となります。
Audience list ID that is subject to the combination.
This field is required in ADD and SET operation.
") @JsonProperty(JSON_PROPERTY_AUDIENCE_LIST_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public Long getAudienceListId() { return audienceListId; } @JsonProperty(JSON_PROPERTY_AUDIENCE_LIST_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setAudienceListId(Long audienceListId) { this.audienceListId = audienceListId; } public AudienceListServiceData audienceListName(String audienceListName) { this.audienceListName = audienceListName; return this; } /** * <div lang=\"ja\">組み合わせ対象のオーディエンスリストの名前です。</div> <div lang=\"en\">Audience list name that is subject to the combination.</div> * @return audienceListName **/ @javax.annotation.Nullable @ApiModelProperty(value = "
組み合わせ対象のオーディエンスリストの名前です。
Audience list name that is subject to the combination.
") @JsonProperty(JSON_PROPERTY_AUDIENCE_LIST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getAudienceListName() { return audienceListName; } @JsonProperty(JSON_PROPERTY_AUDIENCE_LIST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setAudienceListName(String audienceListName) { this.audienceListName = audienceListName; } public AudienceListServiceData audienceListNameEn(String audienceListNameEn) { this.audienceListNameEn = audienceListNameEn; return this; } /** * <div lang=\"ja\">組み合わせ対象のオーディエンスリストの名前(英語)です。<br> 共通オーディエンスリストの場合のみ返却されます。 </div> <div lang=\"en\">Audience list name (English) that is subject to the combination.<br> This field is returned when the audience list is shared audience list. </div> * @return audienceListNameEn **/ @javax.annotation.Nullable @ApiModelProperty(value = "
組み合わせ対象のオーディエンスリストの名前(英語)です。
共通オーディエンスリストの場合のみ返却されます。
Audience list name (English) that is subject to the combination.
This field is returned when the audience list is shared audience list.
") @JsonProperty(JSON_PROPERTY_AUDIENCE_LIST_NAME_EN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getAudienceListNameEn() { return audienceListNameEn; } @JsonProperty(JSON_PROPERTY_AUDIENCE_LIST_NAME_EN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setAudienceListNameEn(String audienceListNameEn) { this.audienceListNameEn = audienceListNameEn; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AudienceListServiceData audienceListServiceData = (AudienceListServiceData) o; return Objects.equals(this.audienceListId, audienceListServiceData.audienceListId) && Objects.equals(this.audienceListName, audienceListServiceData.audienceListName) && Objects.equals(this.audienceListNameEn, audienceListServiceData.audienceListNameEn); } @Override public int hashCode() { return Objects.hash(audienceListId, audienceListName, audienceListNameEn); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AudienceListServiceData {\n"); sb.append(" audienceListId: ").append(toIndentedString(audienceListId)).append("\n"); sb.append(" audienceListName: ").append(toIndentedString(audienceListName)).append("\n"); sb.append(" audienceListNameEn: ").append(toIndentedString(audienceListNameEn)).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