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

jp.co.yahoo.adsdisplayapi.v15.model.DictionaryServiceSharedAudienceListMaster 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 java.util.ArrayList; import java.util.List; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import com.fasterxml.jackson.annotation.JsonTypeName; /** * <div lang=\"ja\">DictionaryServiceSharedAudienceListMasterオブジェクトは、共通オーディエンスリストマスタを格納するコンテナです。</div> <div lang=\"en\">DictionaryServiceSharedAudienceListMaster object contains shared audience list master.</div> */ @ApiModel(description = "
DictionaryServiceSharedAudienceListMasterオブジェクトは、共通オーディエンスリストマスタを格納するコンテナです。
DictionaryServiceSharedAudienceListMaster object contains shared audience list master.
") @JsonPropertyOrder({ DictionaryServiceSharedAudienceListMaster.JSON_PROPERTY_AUDIENCE_LIST_ID, DictionaryServiceSharedAudienceListMaster.JSON_PROPERTY_AUDIENCE_LIST_NAME, DictionaryServiceSharedAudienceListMaster.JSON_PROPERTY_SUB_AUDIENCE_LIST_NAME, DictionaryServiceSharedAudienceListMaster.JSON_PROPERTY_CHILDREN, DictionaryServiceSharedAudienceListMaster.JSON_PROPERTY_IS_GUARANTEED_PERMITTED }) @JsonTypeName("DictionaryServiceSharedAudienceListMaster") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class DictionaryServiceSharedAudienceListMaster { 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_SUB_AUDIENCE_LIST_NAME = "subAudienceListName"; private String subAudienceListName; public static final String JSON_PROPERTY_CHILDREN = "children"; private List children = null; public static final String JSON_PROPERTY_IS_GUARANTEED_PERMITTED = "isGuaranteedPermitted"; private String isGuaranteedPermitted; public DictionaryServiceSharedAudienceListMaster() { } public DictionaryServiceSharedAudienceListMaster audienceListId(Long audienceListId) { this.audienceListId = audienceListId; return this; } /** * <div lang=\"ja\"> オーディエンスリストIDです。<br> </div> <div lang=\"en\"> Audience list ID. </div> * @return audienceListId **/ @javax.annotation.Nullable @ApiModelProperty(value = "
オーディエンスリストIDです。
Audience list ID.
") @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 DictionaryServiceSharedAudienceListMaster audienceListName(String audienceListName) { this.audienceListName = audienceListName; return this; } /** * <div lang=\"ja\">オーディエンスリスト名です</div> <div lang=\"en\">Audience list name.</div> * @return audienceListName **/ @javax.annotation.Nullable @ApiModelProperty(value = "
オーディエンスリスト名です
Audience list name.
") @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 DictionaryServiceSharedAudienceListMaster subAudienceListName(String subAudienceListName) { this.subAudienceListName = subAudienceListName; return this; } /** * <div lang=\"ja\">サブオーディエンスリスト名です。</div> <div lang=\"en\">Sub-Audience list name.</div> * @return subAudienceListName **/ @javax.annotation.Nullable @ApiModelProperty(value = "
サブオーディエンスリスト名です。
Sub-Audience list name.
") @JsonProperty(JSON_PROPERTY_SUB_AUDIENCE_LIST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getSubAudienceListName() { return subAudienceListName; } @JsonProperty(JSON_PROPERTY_SUB_AUDIENCE_LIST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setSubAudienceListName(String subAudienceListName) { this.subAudienceListName = subAudienceListName; } public DictionaryServiceSharedAudienceListMaster children(List children) { this.children = children; return this; } public DictionaryServiceSharedAudienceListMaster addChildrenItem(DictionaryServiceSharedAudienceListMaster childrenItem) { if (this.children == null) { this.children = new ArrayList<>(); } this.children.add(childrenItem); return this; } /** * <div lang=\"ja\">子要素としてDictionaryServiceSharedAudienceListMasterオブジェクトを使用します。</div> <div lang=\"en\">DictionaryServiceSharedAudienceListMaster object is used.</div> * @return children **/ @javax.annotation.Nullable @ApiModelProperty(value = "
子要素としてDictionaryServiceSharedAudienceListMasterオブジェクトを使用します。
DictionaryServiceSharedAudienceListMaster object is used.
") @JsonProperty(JSON_PROPERTY_CHILDREN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public List getChildren() { return children; } @JsonProperty(JSON_PROPERTY_CHILDREN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setChildren(List children) { this.children = children; } public DictionaryServiceSharedAudienceListMaster isGuaranteedPermitted(String isGuaranteedPermitted) { this.isGuaranteedPermitted = isGuaranteedPermitted; return this; } /** * <div lang=\"ja\">予約型販売対象を表します</div> <div lang=\"en\">Indicates that it is subject to guaranteed sale.</div> * @return isGuaranteedPermitted **/ @javax.annotation.Nullable @ApiModelProperty(value = "
予約型販売対象を表します
Indicates that it is subject to guaranteed sale.
") @JsonProperty(JSON_PROPERTY_IS_GUARANTEED_PERMITTED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getIsGuaranteedPermitted() { return isGuaranteedPermitted; } @JsonProperty(JSON_PROPERTY_IS_GUARANTEED_PERMITTED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setIsGuaranteedPermitted(String isGuaranteedPermitted) { this.isGuaranteedPermitted = isGuaranteedPermitted; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } DictionaryServiceSharedAudienceListMaster dictionaryServiceSharedAudienceListMaster = (DictionaryServiceSharedAudienceListMaster) o; return Objects.equals(this.audienceListId, dictionaryServiceSharedAudienceListMaster.audienceListId) && Objects.equals(this.audienceListName, dictionaryServiceSharedAudienceListMaster.audienceListName) && Objects.equals(this.subAudienceListName, dictionaryServiceSharedAudienceListMaster.subAudienceListName) && Objects.equals(this.children, dictionaryServiceSharedAudienceListMaster.children) && Objects.equals(this.isGuaranteedPermitted, dictionaryServiceSharedAudienceListMaster.isGuaranteedPermitted); } @Override public int hashCode() { return Objects.hash(audienceListId, audienceListName, subAudienceListName, children, isGuaranteedPermitted); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class DictionaryServiceSharedAudienceListMaster {\n"); sb.append(" audienceListId: ").append(toIndentedString(audienceListId)).append("\n"); sb.append(" audienceListName: ").append(toIndentedString(audienceListName)).append("\n"); sb.append(" subAudienceListName: ").append(toIndentedString(subAudienceListName)).append("\n"); sb.append(" children: ").append(toIndentedString(children)).append("\n"); sb.append(" isGuaranteedPermitted: ").append(toIndentedString(isGuaranteedPermitted)).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