com.tencent.ads.model.TimeRange Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of marketing-api-java-sdk Show documentation
Show all versions of marketing-api-java-sdk Show documentation
Tencent Ads Mareting-Api Java Sdk
/*
* 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.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.Objects;
/** 起止时间范围 */
@ApiModel(description = "起止时间范围")
public class TimeRange {
@SerializedName("start_time")
private Long startTime = null;
@SerializedName("end_time")
private Long endTime = null;
public TimeRange startTime(Long startTime) {
this.startTime = startTime;
return this;
}
/**
* Get startTime
*
* @return startTime
*/
@ApiModelProperty(value = "")
public Long getStartTime() {
return startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
}
public TimeRange endTime(Long endTime) {
this.endTime = endTime;
return this;
}
/**
* Get endTime
*
* @return endTime
*/
@ApiModelProperty(value = "")
public Long getEndTime() {
return endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TimeRange timeRange = (TimeRange) o;
return Objects.equals(this.startTime, timeRange.startTime)
&& Objects.equals(this.endTime, timeRange.endTime);
}
@Override
public int hashCode() {
return Objects.hash(startTime, endTime);
}
@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 ");
}
}