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

jp.co.yahoo.adssearchapi.v14.model.KeywordPlanIdeaServiceSeed Maven / Gradle / Ivy

There is a newer version: 8.1.1-spring5
Show newest version
/*
 * Yahoo!広告 検索広告 API リファレンス / Yahoo! JAPAN Ads Search Ads API Reference
 * 
Yahoo!広告 検索広告 APIのWebサービスについて説明します。
Search Ads API Web Services supported in Yahoo! JAPAN Ads API.
OpenAPI Specification
Best Practice
Best Practice
* * The version of the OpenAPI document: v14 * * * 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.adssearchapi.v14.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 jp.co.yahoo.adssearchapi.v14.model.KeywordPlanIdeaServiceKeywordAndUrlSeed; import jp.co.yahoo.adssearchapi.v14.model.KeywordPlanIdeaServiceKeywordSeed; import jp.co.yahoo.adssearchapi.v14.model.KeywordPlanIdeaServiceSeedType; import jp.co.yahoo.adssearchapi.v14.model.KeywordPlanIdeaServiceSiteSeed; import jp.co.yahoo.adssearchapi.v14.model.KeywordPlanIdeaServiceUrlSeed; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import com.fasterxml.jackson.annotation.JsonTypeName; /** * <div lang=\"ja\">KeywordPlanIdeaServiceSeedオブジェクトは、キーワード候補作成条件の詳細情報を表します。</div> <div lang=\"en\">KeywordPlanIdeaServiceSeed object describes detailed information about related keywords creation conditions.</div> */ @ApiModel(description = "
KeywordPlanIdeaServiceSeedオブジェクトは、キーワード候補作成条件の詳細情報を表します。
KeywordPlanIdeaServiceSeed object describes detailed information about related keywords creation conditions.
") @JsonPropertyOrder({ KeywordPlanIdeaServiceSeed.JSON_PROPERTY_KEYWORD_AND_URL_SEED, KeywordPlanIdeaServiceSeed.JSON_PROPERTY_KEYWORD_SEED, KeywordPlanIdeaServiceSeed.JSON_PROPERTY_URL_SEED, KeywordPlanIdeaServiceSeed.JSON_PROPERTY_SITE_SEED, KeywordPlanIdeaServiceSeed.JSON_PROPERTY_SEED_TYPE }) @JsonTypeName("KeywordPlanIdeaServiceSeed") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class KeywordPlanIdeaServiceSeed { public static final String JSON_PROPERTY_KEYWORD_AND_URL_SEED = "keywordAndUrlSeed"; private KeywordPlanIdeaServiceKeywordAndUrlSeed keywordAndUrlSeed; public static final String JSON_PROPERTY_KEYWORD_SEED = "keywordSeed"; private KeywordPlanIdeaServiceKeywordSeed keywordSeed; public static final String JSON_PROPERTY_URL_SEED = "urlSeed"; private KeywordPlanIdeaServiceUrlSeed urlSeed; public static final String JSON_PROPERTY_SITE_SEED = "siteSeed"; private KeywordPlanIdeaServiceSiteSeed siteSeed; public static final String JSON_PROPERTY_SEED_TYPE = "seedType"; private KeywordPlanIdeaServiceSeedType seedType; public KeywordPlanIdeaServiceSeed() { } public KeywordPlanIdeaServiceSeed keywordAndUrlSeed(KeywordPlanIdeaServiceKeywordAndUrlSeed keywordAndUrlSeed) { this.keywordAndUrlSeed = keywordAndUrlSeed; return this; } /** * Get keywordAndUrlSeed * @return keywordAndUrlSeed **/ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_KEYWORD_AND_URL_SEED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public KeywordPlanIdeaServiceKeywordAndUrlSeed getKeywordAndUrlSeed() { return keywordAndUrlSeed; } @JsonProperty(JSON_PROPERTY_KEYWORD_AND_URL_SEED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setKeywordAndUrlSeed(KeywordPlanIdeaServiceKeywordAndUrlSeed keywordAndUrlSeed) { this.keywordAndUrlSeed = keywordAndUrlSeed; } public KeywordPlanIdeaServiceSeed keywordSeed(KeywordPlanIdeaServiceKeywordSeed keywordSeed) { this.keywordSeed = keywordSeed; return this; } /** * Get keywordSeed * @return keywordSeed **/ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_KEYWORD_SEED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public KeywordPlanIdeaServiceKeywordSeed getKeywordSeed() { return keywordSeed; } @JsonProperty(JSON_PROPERTY_KEYWORD_SEED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setKeywordSeed(KeywordPlanIdeaServiceKeywordSeed keywordSeed) { this.keywordSeed = keywordSeed; } public KeywordPlanIdeaServiceSeed urlSeed(KeywordPlanIdeaServiceUrlSeed urlSeed) { this.urlSeed = urlSeed; return this; } /** * Get urlSeed * @return urlSeed **/ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_URL_SEED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public KeywordPlanIdeaServiceUrlSeed getUrlSeed() { return urlSeed; } @JsonProperty(JSON_PROPERTY_URL_SEED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setUrlSeed(KeywordPlanIdeaServiceUrlSeed urlSeed) { this.urlSeed = urlSeed; } public KeywordPlanIdeaServiceSeed siteSeed(KeywordPlanIdeaServiceSiteSeed siteSeed) { this.siteSeed = siteSeed; return this; } /** * Get siteSeed * @return siteSeed **/ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SITE_SEED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public KeywordPlanIdeaServiceSiteSeed getSiteSeed() { return siteSeed; } @JsonProperty(JSON_PROPERTY_SITE_SEED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setSiteSeed(KeywordPlanIdeaServiceSiteSeed siteSeed) { this.siteSeed = siteSeed; } public KeywordPlanIdeaServiceSeed seedType(KeywordPlanIdeaServiceSeedType seedType) { this.seedType = seedType; return this; } /** * Get seedType * @return seedType **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") @JsonProperty(JSON_PROPERTY_SEED_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) public KeywordPlanIdeaServiceSeedType getSeedType() { return seedType; } @JsonProperty(JSON_PROPERTY_SEED_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) public void setSeedType(KeywordPlanIdeaServiceSeedType seedType) { this.seedType = seedType; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } KeywordPlanIdeaServiceSeed keywordPlanIdeaServiceSeed = (KeywordPlanIdeaServiceSeed) o; return Objects.equals(this.keywordAndUrlSeed, keywordPlanIdeaServiceSeed.keywordAndUrlSeed) && Objects.equals(this.keywordSeed, keywordPlanIdeaServiceSeed.keywordSeed) && Objects.equals(this.urlSeed, keywordPlanIdeaServiceSeed.urlSeed) && Objects.equals(this.siteSeed, keywordPlanIdeaServiceSeed.siteSeed) && Objects.equals(this.seedType, keywordPlanIdeaServiceSeed.seedType); } @Override public int hashCode() { return Objects.hash(keywordAndUrlSeed, keywordSeed, urlSeed, siteSeed, seedType); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class KeywordPlanIdeaServiceSeed {\n"); sb.append(" keywordAndUrlSeed: ").append(toIndentedString(keywordAndUrlSeed)).append("\n"); sb.append(" keywordSeed: ").append(toIndentedString(keywordSeed)).append("\n"); sb.append(" urlSeed: ").append(toIndentedString(urlSeed)).append("\n"); sb.append(" siteSeed: ").append(toIndentedString(siteSeed)).append("\n"); sb.append(" seedType: ").append(toIndentedString(seedType)).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 - 2024 Weber Informatics LLC | Privacy Policy