jp.co.yahoo.adssearchapi.v13.model.RetargetingListServiceRetargetingAccountStatus 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 jp.co.yahoo.adssearchapi.v13.model.RetargetingListServiceReviewStatus;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonTypeName;
/**
* <div lang=\"ja\">RetargetingListServiceRetargetingAccountStatusは、アカウントのリタゲ審査ステータスを保持するオブジェクトです。</div> <div lang=\"en\">RetargetingListServiceRetargetingAccountStatus is an object that holds retargeting review status of account.</div>
*/
@ApiModel(description = "RetargetingListServiceRetargetingAccountStatusは、アカウントのリタゲ審査ステータスを保持するオブジェクトです。 RetargetingListServiceRetargetingAccountStatus is an object that holds retargeting review status of account. ")
@JsonPropertyOrder({
RetargetingListServiceRetargetingAccountStatus.JSON_PROPERTY_AGREE_DATE,
RetargetingListServiceRetargetingAccountStatus.JSON_PROPERTY_REVIEW_REQUEST_DATE,
RetargetingListServiceRetargetingAccountStatus.JSON_PROPERTY_REVIEW_STATUS
})
@JsonTypeName("RetargetingListServiceRetargetingAccountStatus")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class RetargetingListServiceRetargetingAccountStatus {
public static final String JSON_PROPERTY_AGREE_DATE = "agreeDate";
private String agreeDate;
public static final String JSON_PROPERTY_REVIEW_REQUEST_DATE = "reviewRequestDate";
private String reviewRequestDate;
public static final String JSON_PROPERTY_REVIEW_STATUS = "reviewStatus";
private RetargetingListServiceReviewStatus reviewStatus;
public RetargetingListServiceRetargetingAccountStatus() {
}
public RetargetingListServiceRetargetingAccountStatus agreeDate(String agreeDate) {
this.agreeDate = agreeDate;
return this;
}
/**
* <div lang=\"ja\">規約同意日です。<br> ※YYYYMMDD形式です。</div> <div lang=\"en\">Agreement date.<br> *In YYYYMMDD format.</div>
* @return agreeDate
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "規約同意日です。
※YYYYMMDD形式です。 Agreement date.
*In YYYYMMDD format. ")
@JsonProperty(JSON_PROPERTY_AGREE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getAgreeDate() {
return agreeDate;
}
@JsonProperty(JSON_PROPERTY_AGREE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setAgreeDate(String agreeDate) {
this.agreeDate = agreeDate;
}
public RetargetingListServiceRetargetingAccountStatus reviewRequestDate(String reviewRequestDate) {
this.reviewRequestDate = reviewRequestDate;
return this;
}
/**
* <div lang=\"ja\">再審査依頼日です。<br> ※YYYYMMDD形式です。</div> <div lang=\"en\">Re-examination review request date.<br> *In YYYYMMDD format.</div>
* @return reviewRequestDate
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "再審査依頼日です。
※YYYYMMDD形式です。 Re-examination review request date.
*In YYYYMMDD format. ")
@JsonProperty(JSON_PROPERTY_REVIEW_REQUEST_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getReviewRequestDate() {
return reviewRequestDate;
}
@JsonProperty(JSON_PROPERTY_REVIEW_REQUEST_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setReviewRequestDate(String reviewRequestDate) {
this.reviewRequestDate = reviewRequestDate;
}
public RetargetingListServiceRetargetingAccountStatus reviewStatus(RetargetingListServiceReviewStatus reviewStatus) {
this.reviewStatus = reviewStatus;
return this;
}
/**
* Get reviewStatus
* @return reviewStatus
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_REVIEW_STATUS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public RetargetingListServiceReviewStatus getReviewStatus() {
return reviewStatus;
}
@JsonProperty(JSON_PROPERTY_REVIEW_STATUS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setReviewStatus(RetargetingListServiceReviewStatus reviewStatus) {
this.reviewStatus = reviewStatus;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
RetargetingListServiceRetargetingAccountStatus retargetingListServiceRetargetingAccountStatus = (RetargetingListServiceRetargetingAccountStatus) o;
return Objects.equals(this.agreeDate, retargetingListServiceRetargetingAccountStatus.agreeDate) &&
Objects.equals(this.reviewRequestDate, retargetingListServiceRetargetingAccountStatus.reviewRequestDate) &&
Objects.equals(this.reviewStatus, retargetingListServiceRetargetingAccountStatus.reviewStatus);
}
@Override
public int hashCode() {
return Objects.hash(agreeDate, reviewRequestDate, reviewStatus);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class RetargetingListServiceRetargetingAccountStatus {\n");
sb.append(" agreeDate: ").append(toIndentedString(agreeDate)).append("\n");
sb.append(" reviewRequestDate: ").append(toIndentedString(reviewRequestDate)).append("\n");
sb.append(" reviewStatus: ").append(toIndentedString(reviewStatus)).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 ");
}
}