
com.tencent.ads.model.LocalEstimatedamountGetResponseData Maven / Gradle / Ivy
/*
* Marketing API
* Marketing API
*
* OpenAPI spec version: 1.3
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package com.tencent.ads.model;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import io.swagger.annotations.ApiModelProperty;
import java.util.Objects;
/** LocalEstimatedamountGetResponseData */
public class LocalEstimatedamountGetResponseData {
@SerializedName("min_estimated_exposure")
private Long minEstimatedExposure = null;
@SerializedName("max_estimated_exposure")
private Long maxEstimatedExposure = null;
@SerializedName("min_estimated_conv")
private Long minEstimatedConv = null;
@SerializedName("max_estimated_conv")
private Long maxEstimatedConv = null;
@SerializedName("suggestion")
private String suggestion = null;
public LocalEstimatedamountGetResponseData minEstimatedExposure(Long minEstimatedExposure) {
this.minEstimatedExposure = minEstimatedExposure;
return this;
}
/**
* Get minEstimatedExposure
*
* @return minEstimatedExposure
*/
@ApiModelProperty(value = "")
public Long getMinEstimatedExposure() {
return minEstimatedExposure;
}
public void setMinEstimatedExposure(Long minEstimatedExposure) {
this.minEstimatedExposure = minEstimatedExposure;
}
public LocalEstimatedamountGetResponseData maxEstimatedExposure(Long maxEstimatedExposure) {
this.maxEstimatedExposure = maxEstimatedExposure;
return this;
}
/**
* Get maxEstimatedExposure
*
* @return maxEstimatedExposure
*/
@ApiModelProperty(value = "")
public Long getMaxEstimatedExposure() {
return maxEstimatedExposure;
}
public void setMaxEstimatedExposure(Long maxEstimatedExposure) {
this.maxEstimatedExposure = maxEstimatedExposure;
}
public LocalEstimatedamountGetResponseData minEstimatedConv(Long minEstimatedConv) {
this.minEstimatedConv = minEstimatedConv;
return this;
}
/**
* Get minEstimatedConv
*
* @return minEstimatedConv
*/
@ApiModelProperty(value = "")
public Long getMinEstimatedConv() {
return minEstimatedConv;
}
public void setMinEstimatedConv(Long minEstimatedConv) {
this.minEstimatedConv = minEstimatedConv;
}
public LocalEstimatedamountGetResponseData maxEstimatedConv(Long maxEstimatedConv) {
this.maxEstimatedConv = maxEstimatedConv;
return this;
}
/**
* Get maxEstimatedConv
*
* @return maxEstimatedConv
*/
@ApiModelProperty(value = "")
public Long getMaxEstimatedConv() {
return maxEstimatedConv;
}
public void setMaxEstimatedConv(Long maxEstimatedConv) {
this.maxEstimatedConv = maxEstimatedConv;
}
public LocalEstimatedamountGetResponseData suggestion(String suggestion) {
this.suggestion = suggestion;
return this;
}
/**
* Get suggestion
*
* @return suggestion
*/
@ApiModelProperty(value = "")
public String getSuggestion() {
return suggestion;
}
public void setSuggestion(String suggestion) {
this.suggestion = suggestion;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
LocalEstimatedamountGetResponseData localEstimatedamountGetResponseData =
(LocalEstimatedamountGetResponseData) o;
return Objects.equals(
this.minEstimatedExposure, localEstimatedamountGetResponseData.minEstimatedExposure)
&& Objects.equals(
this.maxEstimatedExposure, localEstimatedamountGetResponseData.maxEstimatedExposure)
&& Objects.equals(
this.minEstimatedConv, localEstimatedamountGetResponseData.minEstimatedConv)
&& Objects.equals(
this.maxEstimatedConv, localEstimatedamountGetResponseData.maxEstimatedConv)
&& Objects.equals(this.suggestion, localEstimatedamountGetResponseData.suggestion);
}
@Override
public int hashCode() {
return Objects.hash(
minEstimatedExposure, maxEstimatedExposure, minEstimatedConv, maxEstimatedConv, suggestion);
}
@Override
public String toString() {
Gson gson = new Gson();
return gson.toJson(this);
}
/**
* Convert the given object to string with each line indented by 4 spaces (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy