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

jp.co.yahoo.adssearchapi.v12.model.AccountServiceSelector Maven / Gradle / Ivy

The 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: v12 * * * 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.v12.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 jp.co.yahoo.adssearchapi.v12.model.AccountServiceIncludeMccAccount; import jp.co.yahoo.adssearchapi.v12.model.AccountServiceIncludeTestAccount; import jp.co.yahoo.adssearchapi.v12.model.AccountServiceStatus; import jp.co.yahoo.adssearchapi.v12.model.AccountServiceType; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import com.fasterxml.jackson.annotation.JsonTypeName; /** * <div lang=\"ja\">AccountServiceSelectorオブジェクトは、選択するアカウントを表します。</div> <div lang=\"en\">AccountServiceSelector object explains which accounts to return.</div> */ @ApiModel(description = "
AccountServiceSelectorオブジェクトは、選択するアカウントを表します。
AccountServiceSelector object explains which accounts to return.
") @JsonPropertyOrder({ AccountServiceSelector.JSON_PROPERTY_ACCOUNT_IDS, AccountServiceSelector.JSON_PROPERTY_ACCOUNT_NAME, AccountServiceSelector.JSON_PROPERTY_ACCOUNT_STATUSES, AccountServiceSelector.JSON_PROPERTY_ACCOUNT_TYPES, AccountServiceSelector.JSON_PROPERTY_INCLUDE_TEST_ACCOUNT, AccountServiceSelector.JSON_PROPERTY_INCLUDE_MCC_ACCOUNT, AccountServiceSelector.JSON_PROPERTY_NUMBER_RESULTS, AccountServiceSelector.JSON_PROPERTY_START_INDEX }) @JsonTypeName("AccountServiceSelector") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class AccountServiceSelector { public static final String JSON_PROPERTY_ACCOUNT_IDS = "accountIds"; private List accountIds = null; public static final String JSON_PROPERTY_ACCOUNT_NAME = "accountName"; private String accountName; public static final String JSON_PROPERTY_ACCOUNT_STATUSES = "accountStatuses"; private List accountStatuses = null; public static final String JSON_PROPERTY_ACCOUNT_TYPES = "accountTypes"; private List accountTypes = null; public static final String JSON_PROPERTY_INCLUDE_TEST_ACCOUNT = "includeTestAccount"; private AccountServiceIncludeTestAccount includeTestAccount = AccountServiceIncludeTestAccount.EXCLUDE_TEST; public static final String JSON_PROPERTY_INCLUDE_MCC_ACCOUNT = "includeMccAccount"; private AccountServiceIncludeMccAccount includeMccAccount; public static final String JSON_PROPERTY_NUMBER_RESULTS = "numberResults"; private Integer numberResults = 500; public static final String JSON_PROPERTY_START_INDEX = "startIndex"; private Integer startIndex = 1; public AccountServiceSelector() { } public AccountServiceSelector accountIds(List accountIds) { this.accountIds = accountIds; return this; } public AccountServiceSelector addAccountIdsItem(Long accountIdsItem) { if (this.accountIds == null) { this.accountIds = new ArrayList<>(); } this.accountIds.add(accountIdsItem); return this; } /** * <div lang=\"ja\">アカウントIDの配列です。</div> <div lang=\"en\">Account IDs.</div> * @return accountIds **/ @javax.annotation.Nullable @ApiModelProperty(value = "
アカウントIDの配列です。
Account IDs.
") @JsonProperty(JSON_PROPERTY_ACCOUNT_IDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public List getAccountIds() { return accountIds; } @JsonProperty(JSON_PROPERTY_ACCOUNT_IDS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setAccountIds(List accountIds) { this.accountIds = accountIds; } public AccountServiceSelector accountName(String accountName) { this.accountName = accountName; return this; } /** * <div lang=\"ja\">アカウント名です。<br> このフィールドは、省略可能となります。<br> この検索条件では、大文字と小文字は区別されません。 </div> <div lang=\"en\">Account name.<br> This field is optional.<br> This searching condition is case-insensitive. </div> * @return accountName **/ @javax.annotation.Nullable @ApiModelProperty(value = "
アカウント名です。
このフィールドは、省略可能となります。
この検索条件では、大文字と小文字は区別されません。
Account name.
This field is optional.
This searching condition is case-insensitive.
") @JsonProperty(JSON_PROPERTY_ACCOUNT_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getAccountName() { return accountName; } @JsonProperty(JSON_PROPERTY_ACCOUNT_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setAccountName(String accountName) { this.accountName = accountName; } public AccountServiceSelector accountStatuses(List accountStatuses) { this.accountStatuses = accountStatuses; return this; } public AccountServiceSelector addAccountStatusesItem(AccountServiceStatus accountStatusesItem) { if (this.accountStatuses == null) { this.accountStatuses = new ArrayList<>(); } this.accountStatuses.add(accountStatusesItem); return this; } /** * Get accountStatuses * @return accountStatuses **/ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ACCOUNT_STATUSES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public List getAccountStatuses() { return accountStatuses; } @JsonProperty(JSON_PROPERTY_ACCOUNT_STATUSES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setAccountStatuses(List accountStatuses) { this.accountStatuses = accountStatuses; } public AccountServiceSelector accountTypes(List accountTypes) { this.accountTypes = accountTypes; return this; } public AccountServiceSelector addAccountTypesItem(AccountServiceType accountTypesItem) { if (this.accountTypes == null) { this.accountTypes = new ArrayList<>(); } this.accountTypes.add(accountTypesItem); return this; } /** * Get accountTypes * @return accountTypes **/ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ACCOUNT_TYPES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public List getAccountTypes() { return accountTypes; } @JsonProperty(JSON_PROPERTY_ACCOUNT_TYPES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setAccountTypes(List accountTypes) { this.accountTypes = accountTypes; } public AccountServiceSelector includeTestAccount(AccountServiceIncludeTestAccount includeTestAccount) { this.includeTestAccount = includeTestAccount; return this; } /** * Get includeTestAccount * @return includeTestAccount **/ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_INCLUDE_TEST_ACCOUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public AccountServiceIncludeTestAccount getIncludeTestAccount() { return includeTestAccount; } @JsonProperty(JSON_PROPERTY_INCLUDE_TEST_ACCOUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setIncludeTestAccount(AccountServiceIncludeTestAccount includeTestAccount) { this.includeTestAccount = includeTestAccount; } public AccountServiceSelector includeMccAccount(AccountServiceIncludeMccAccount includeMccAccount) { this.includeMccAccount = includeMccAccount; return this; } /** * Get includeMccAccount * @return includeMccAccount **/ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_INCLUDE_MCC_ACCOUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public AccountServiceIncludeMccAccount getIncludeMccAccount() { return includeMccAccount; } @JsonProperty(JSON_PROPERTY_INCLUDE_MCC_ACCOUNT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setIncludeMccAccount(AccountServiceIncludeMccAccount includeMccAccount) { this.includeMccAccount = includeMccAccount; } public AccountServiceSelector numberResults(Integer numberResults) { this.numberResults = numberResults; return this; } /** * <div lang=\"ja\">ページの最大件数です。このフィールドは、1以上を指定する必要があります。</div> <div lang=\"en\">Maximum number of results to return in this page. This field must be greater than or equal to 1. Also see Entity Limits per operation.</div> * minimum: 1 * maximum: 500 * @return numberResults **/ @javax.annotation.Nullable @ApiModelProperty(value = "
ページの最大件数です。このフィールドは、1以上を指定する必要があります。
Maximum number of results to return in this page. This field must be greater than or equal to 1. Also see Entity Limits per operation.
") @JsonProperty(JSON_PROPERTY_NUMBER_RESULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public Integer getNumberResults() { return numberResults; } @JsonProperty(JSON_PROPERTY_NUMBER_RESULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setNumberResults(Integer numberResults) { this.numberResults = numberResults; } public AccountServiceSelector startIndex(Integer startIndex) { this.startIndex = startIndex; return this; } /** * <div lang=\"ja\">ページの先頭のインデックスです。このフィールドは、1以上を指定する必要があります。</div> <div lang=\"en\">Index of the first result to return in this page. This field must be greater than or equal to 1.</div> * minimum: 1 * @return startIndex **/ @javax.annotation.Nullable @ApiModelProperty(value = "
ページの先頭のインデックスです。このフィールドは、1以上を指定する必要があります。
Index of the first result to return in this page. This field must be greater than or equal to 1.
") @JsonProperty(JSON_PROPERTY_START_INDEX) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public Integer getStartIndex() { return startIndex; } @JsonProperty(JSON_PROPERTY_START_INDEX) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setStartIndex(Integer startIndex) { this.startIndex = startIndex; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AccountServiceSelector accountServiceSelector = (AccountServiceSelector) o; return Objects.equals(this.accountIds, accountServiceSelector.accountIds) && Objects.equals(this.accountName, accountServiceSelector.accountName) && Objects.equals(this.accountStatuses, accountServiceSelector.accountStatuses) && Objects.equals(this.accountTypes, accountServiceSelector.accountTypes) && Objects.equals(this.includeTestAccount, accountServiceSelector.includeTestAccount) && Objects.equals(this.includeMccAccount, accountServiceSelector.includeMccAccount) && Objects.equals(this.numberResults, accountServiceSelector.numberResults) && Objects.equals(this.startIndex, accountServiceSelector.startIndex); } @Override public int hashCode() { return Objects.hash(accountIds, accountName, accountStatuses, accountTypes, includeTestAccount, includeMccAccount, numberResults, startIndex); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AccountServiceSelector {\n"); sb.append(" accountIds: ").append(toIndentedString(accountIds)).append("\n"); sb.append(" accountName: ").append(toIndentedString(accountName)).append("\n"); sb.append(" accountStatuses: ").append(toIndentedString(accountStatuses)).append("\n"); sb.append(" accountTypes: ").append(toIndentedString(accountTypes)).append("\n"); sb.append(" includeTestAccount: ").append(toIndentedString(includeTestAccount)).append("\n"); sb.append(" includeMccAccount: ").append(toIndentedString(includeMccAccount)).append("\n"); sb.append(" numberResults: ").append(toIndentedString(numberResults)).append("\n"); sb.append(" startIndex: ").append(toIndentedString(startIndex)).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