com.volcengine.dcdn.model.DescribeDomainUVDataRequest Maven / Gradle / Ivy
/*
* dcdn
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: common-version
*
*
* 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.volcengine.dcdn.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.v3.oas.annotations.media.Schema;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import javax.validation.constraints.*;
import javax.validation.Valid;
/**
* DescribeDomainUVDataRequest
*/
public class DescribeDomainUVDataRequest {
@SerializedName("Domain")
private String domain = null;
@SerializedName("EndTime")
private String endTime = null;
@SerializedName("ProjectName")
private List projectName = null;
@SerializedName("StartTime")
private String startTime = null;
public DescribeDomainUVDataRequest domain(String domain) {
this.domain = domain;
return this;
}
/**
* Get domain
* @return domain
**/
@NotNull
@Schema(required = true, description = "")
public String getDomain() {
return domain;
}
public void setDomain(String domain) {
this.domain = domain;
}
public DescribeDomainUVDataRequest endTime(String endTime) {
this.endTime = endTime;
return this;
}
/**
* Get endTime
* @return endTime
**/
@NotNull
@Schema(required = true, description = "")
public String getEndTime() {
return endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
}
public DescribeDomainUVDataRequest projectName(List projectName) {
this.projectName = projectName;
return this;
}
public DescribeDomainUVDataRequest addProjectNameItem(String projectNameItem) {
if (this.projectName == null) {
this.projectName = new ArrayList();
}
this.projectName.add(projectNameItem);
return this;
}
/**
* Get projectName
* @return projectName
**/
@Schema(description = "")
public List getProjectName() {
return projectName;
}
public void setProjectName(List projectName) {
this.projectName = projectName;
}
public DescribeDomainUVDataRequest startTime(String startTime) {
this.startTime = startTime;
return this;
}
/**
* Get startTime
* @return startTime
**/
@NotNull
@Schema(required = true, description = "")
public String getStartTime() {
return startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
DescribeDomainUVDataRequest describeDomainUVDataRequest = (DescribeDomainUVDataRequest) o;
return Objects.equals(this.domain, describeDomainUVDataRequest.domain) &&
Objects.equals(this.endTime, describeDomainUVDataRequest.endTime) &&
Objects.equals(this.projectName, describeDomainUVDataRequest.projectName) &&
Objects.equals(this.startTime, describeDomainUVDataRequest.startTime);
}
@Override
public int hashCode() {
return Objects.hash(domain, endTime, projectName, startTime);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class DescribeDomainUVDataRequest {\n");
sb.append(" domain: ").append(toIndentedString(domain)).append("\n");
sb.append(" endTime: ").append(toIndentedString(endTime)).append("\n");
sb.append(" projectName: ").append(toIndentedString(projectName)).append("\n");
sb.append(" startTime: ").append(toIndentedString(startTime)).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(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}