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

jp.co.yahoo.adssearchapi.v14.model.CampaignExportServiceFieldAttribute 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 com.fasterxml.jackson.annotation.JsonPropertyOrder; import com.fasterxml.jackson.annotation.JsonTypeName; /** * <div lang=\"ja\">CampaignExportServiceFieldAttribute オブジェクトは、ジョブ作成に使用できるフィールドを表します。</div> <div lang=\"en\">CampaignExportServiceFieldAttribute object displays available fields for creating jobs.</div> */ @ApiModel(description = "
CampaignExportServiceFieldAttribute オブジェクトは、ジョブ作成に使用できるフィールドを表します。
CampaignExportServiceFieldAttribute object displays available fields for creating jobs.
") @JsonPropertyOrder({ CampaignExportServiceFieldAttribute.JSON_PROPERTY_DISPLAY_FIELD_NAME_E_N, CampaignExportServiceFieldAttribute.JSON_PROPERTY_DISPLAY_FIELD_NAME_J_A, CampaignExportServiceFieldAttribute.JSON_PROPERTY_FIELD_NAME }) @JsonTypeName("CampaignExportServiceFieldAttribute") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class CampaignExportServiceFieldAttribute { public static final String JSON_PROPERTY_DISPLAY_FIELD_NAME_E_N = "displayFieldNameEN"; private String displayFieldNameEN; public static final String JSON_PROPERTY_DISPLAY_FIELD_NAME_J_A = "displayFieldNameJA"; private String displayFieldNameJA; public static final String JSON_PROPERTY_FIELD_NAME = "fieldName"; private String fieldName; public CampaignExportServiceFieldAttribute() { } public CampaignExportServiceFieldAttribute displayFieldNameEN(String displayFieldNameEN) { this.displayFieldNameEN = displayFieldNameEN; return this; } /** * <div lang=\"ja\">フィールドの英語表示名です。</div> <div lang=\"en\">Display name (EN).</div> * @return displayFieldNameEN **/ @javax.annotation.Nullable @ApiModelProperty(value = "
フィールドの英語表示名です。
Display name (EN).
") @JsonProperty(JSON_PROPERTY_DISPLAY_FIELD_NAME_E_N) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getDisplayFieldNameEN() { return displayFieldNameEN; } @JsonProperty(JSON_PROPERTY_DISPLAY_FIELD_NAME_E_N) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setDisplayFieldNameEN(String displayFieldNameEN) { this.displayFieldNameEN = displayFieldNameEN; } public CampaignExportServiceFieldAttribute displayFieldNameJA(String displayFieldNameJA) { this.displayFieldNameJA = displayFieldNameJA; return this; } /** * <div lang=\"ja\">フィールドの日本語表示名です。</div> <div lang=\"en\">Display name (JA).</div> * @return displayFieldNameJA **/ @javax.annotation.Nullable @ApiModelProperty(value = "
フィールドの日本語表示名です。
Display name (JA).
") @JsonProperty(JSON_PROPERTY_DISPLAY_FIELD_NAME_J_A) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getDisplayFieldNameJA() { return displayFieldNameJA; } @JsonProperty(JSON_PROPERTY_DISPLAY_FIELD_NAME_J_A) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setDisplayFieldNameJA(String displayFieldNameJA) { this.displayFieldNameJA = displayFieldNameJA; } public CampaignExportServiceFieldAttribute fieldName(String fieldName) { this.fieldName = fieldName; return this; } /** * <div lang=\"ja\">フィールド名です。</div> <div lang=\"en\">Field name.</div> * @return fieldName **/ @javax.annotation.Nullable @ApiModelProperty(value = "
フィールド名です。
Field name.
") @JsonProperty(JSON_PROPERTY_FIELD_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getFieldName() { return fieldName; } @JsonProperty(JSON_PROPERTY_FIELD_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setFieldName(String fieldName) { this.fieldName = fieldName; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CampaignExportServiceFieldAttribute campaignExportServiceFieldAttribute = (CampaignExportServiceFieldAttribute) o; return Objects.equals(this.displayFieldNameEN, campaignExportServiceFieldAttribute.displayFieldNameEN) && Objects.equals(this.displayFieldNameJA, campaignExportServiceFieldAttribute.displayFieldNameJA) && Objects.equals(this.fieldName, campaignExportServiceFieldAttribute.fieldName); } @Override public int hashCode() { return Objects.hash(displayFieldNameEN, displayFieldNameJA, fieldName); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CampaignExportServiceFieldAttribute {\n"); sb.append(" displayFieldNameEN: ").append(toIndentedString(displayFieldNameEN)).append("\n"); sb.append(" displayFieldNameJA: ").append(toIndentedString(displayFieldNameJA)).append("\n"); sb.append(" fieldName: ").append(toIndentedString(fieldName)).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