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

jp.co.yahoo.adssearchapi.v13.model.CampaignLabel 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: 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.adssearchapi.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\">CampaignLabelオブジェクトは、キャンペーンラベルの情報を表します。</div> <div lang=\"en\">CampaignLabel object describes campaign label information.</div> */ @ApiModel(description = "
CampaignLabelオブジェクトは、キャンペーンラベルの情報を表します。
CampaignLabel object describes campaign label information.
") @JsonPropertyOrder({ CampaignLabel.JSON_PROPERTY_ACCOUNT_ID, CampaignLabel.JSON_PROPERTY_CAMPAIGN_ID, CampaignLabel.JSON_PROPERTY_LABEL_ID }) @JsonTypeName("CampaignLabel") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class CampaignLabel { public static final String JSON_PROPERTY_ACCOUNT_ID = "accountId"; private Long accountId; public static final String JSON_PROPERTY_CAMPAIGN_ID = "campaignId"; private Long campaignId; public static final String JSON_PROPERTY_LABEL_ID = "labelId"; private Long labelId; public CampaignLabel() { } public CampaignLabel accountId(Long accountId) { this.accountId = accountId; return this; } /** * <div lang=\"ja\">アカウントIDです。<br> このフィールドは、レスポンスの際に返却されますが、リクエストの際には無視されます。</div> <div lang=\"en\">Account ID.<br> Although this field will be returned in the response, it will be ignored on input.</div> * @return accountId **/ @javax.annotation.Nullable @ApiModelProperty(value = "
アカウントIDです。
このフィールドは、レスポンスの際に返却されますが、リクエストの際には無視されます。
Account ID.
Although this field will be returned in the response, it will be ignored on input.
") @JsonProperty(JSON_PROPERTY_ACCOUNT_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public Long getAccountId() { return accountId; } @JsonProperty(JSON_PROPERTY_ACCOUNT_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setAccountId(Long accountId) { this.accountId = accountId; } public CampaignLabel campaignId(Long campaignId) { this.campaignId = campaignId; return this; } /** * <div lang=\"ja\">キャンペーンIDです。<br> このフィールドは、いずれの場合でも必須です。</div> <div lang=\"en\">Campaign ID.<br> This field is required in any cases.</div> * @return campaignId **/ @javax.annotation.Nullable @ApiModelProperty(value = "
キャンペーンIDです。
このフィールドは、いずれの場合でも必須です。
Campaign ID.
This field is required in any cases.
") @JsonProperty(JSON_PROPERTY_CAMPAIGN_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public Long getCampaignId() { return campaignId; } @JsonProperty(JSON_PROPERTY_CAMPAIGN_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setCampaignId(Long campaignId) { this.campaignId = campaignId; } public CampaignLabel labelId(Long labelId) { this.labelId = labelId; return this; } /** * <div lang=\"ja\">ラベルIDです。<br> このフィールドは、いずれの場合でも必須です。</div> <div lang=\"en\">Label ID.<br> This field is required in any cases.</div> * @return labelId **/ @javax.annotation.Nullable @ApiModelProperty(value = "
ラベルIDです。
このフィールドは、いずれの場合でも必須です。
Label ID.
This field is required in any cases.
") @JsonProperty(JSON_PROPERTY_LABEL_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public Long getLabelId() { return labelId; } @JsonProperty(JSON_PROPERTY_LABEL_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setLabelId(Long labelId) { this.labelId = labelId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CampaignLabel campaignLabel = (CampaignLabel) o; return Objects.equals(this.accountId, campaignLabel.accountId) && Objects.equals(this.campaignId, campaignLabel.campaignId) && Objects.equals(this.labelId, campaignLabel.labelId); } @Override public int hashCode() { return Objects.hash(accountId, campaignId, labelId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CampaignLabel {\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" campaignId: ").append(toIndentedString(campaignId)).append("\n"); sb.append(" labelId: ").append(toIndentedString(labelId)).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