jp.co.yahoo.adssearchapi.v13.model.ErrorDetail Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ads-search-api-lib Show documentation
Show all versions of ads-search-api-lib Show documentation
Yahoo! JAPAN Ads Search Ads API library for Java
/*
* Yahoo!広告 検索広告 API リファレンス / Yahoo! JAPAN Ads Search Ads API Reference
* Yahoo!広告 検索広告 APIのWebサービスについて説明します。 Search Ads API Web Services supported in Yahoo! JAPAN Ads API.
*
* 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\">ErrorDetailオブジェクトは、エラーの詳細な内容を表します。</div><div lang=\"en\">Detailed information of error.</div>
*/
@ApiModel(description = "ErrorDetailオブジェクトは、エラーの詳細な内容を表します。Detailed information of error.")
@JsonPropertyOrder({
ErrorDetail.JSON_PROPERTY_REQUEST_KEY,
ErrorDetail.JSON_PROPERTY_REQUEST_VALUE
})
@JsonTypeName("ErrorDetail")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class ErrorDetail {
public static final String JSON_PROPERTY_REQUEST_KEY = "requestKey";
private String requestKey;
public static final String JSON_PROPERTY_REQUEST_VALUE = "requestValue";
private String requestValue;
public ErrorDetail() {
}
public ErrorDetail requestKey(String requestKey) {
this.requestKey = requestKey;
return this;
}
/**
* <div lang=\"ja\">エラーが発生したフィールドです。</div><div lang=\"en\">The file that occurred the error.</div>
* @return requestKey
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "エラーが発生したフィールドです。The file that occurred the error.")
@JsonProperty(JSON_PROPERTY_REQUEST_KEY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getRequestKey() {
return requestKey;
}
@JsonProperty(JSON_PROPERTY_REQUEST_KEY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setRequestKey(String requestKey) {
this.requestKey = requestKey;
}
public ErrorDetail requestValue(String requestValue) {
this.requestValue = requestValue;
return this;
}
/**
* <div lang=\"ja\">エラーが発生した値です。</div><div lang=\"en\">The data that caused the error.</div>
* @return requestValue
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "エラーが発生した値です。The data that caused the error.")
@JsonProperty(JSON_PROPERTY_REQUEST_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getRequestValue() {
return requestValue;
}
@JsonProperty(JSON_PROPERTY_REQUEST_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setRequestValue(String requestValue) {
this.requestValue = requestValue;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ErrorDetail errorDetail = (ErrorDetail) o;
return Objects.equals(this.requestKey, errorDetail.requestKey) &&
Objects.equals(this.requestValue, errorDetail.requestValue);
}
@Override
public int hashCode() {
return Objects.hash(requestKey, requestValue);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ErrorDetail {\n");
sb.append(" requestKey: ").append(toIndentedString(requestKey)).append("\n");
sb.append(" requestValue: ").append(toIndentedString(requestValue)).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 ");
}
}