com.volcengine.cdn.model.DescribeStatisticalRankingResponse Maven / Gradle / Ivy
/*
* cdn
* 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.cdn.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 com.volcengine.cdn.model.RankingDataListForDescribeStatisticalRankingOutput;
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;
/**
* DescribeStatisticalRankingResponse
*/
public class DescribeStatisticalRankingResponse extends com.volcengine.model.AbstractResponse {
@SerializedName("Item")
private String item = null;
@SerializedName("Metric")
private String metric = null;
@SerializedName("RankingDataList")
private List rankingDataList = null;
@SerializedName("UaType")
private String uaType = null;
public DescribeStatisticalRankingResponse item(String item) {
this.item = item;
return this;
}
/**
* Get item
* @return item
**/
@Schema(description = "")
public String getItem() {
return item;
}
public void setItem(String item) {
this.item = item;
}
public DescribeStatisticalRankingResponse metric(String metric) {
this.metric = metric;
return this;
}
/**
* Get metric
* @return metric
**/
@Schema(description = "")
public String getMetric() {
return metric;
}
public void setMetric(String metric) {
this.metric = metric;
}
public DescribeStatisticalRankingResponse rankingDataList(List rankingDataList) {
this.rankingDataList = rankingDataList;
return this;
}
public DescribeStatisticalRankingResponse addRankingDataListItem(RankingDataListForDescribeStatisticalRankingOutput rankingDataListItem) {
if (this.rankingDataList == null) {
this.rankingDataList = new ArrayList();
}
this.rankingDataList.add(rankingDataListItem);
return this;
}
/**
* Get rankingDataList
* @return rankingDataList
**/
@Valid
@Schema(description = "")
public List getRankingDataList() {
return rankingDataList;
}
public void setRankingDataList(List rankingDataList) {
this.rankingDataList = rankingDataList;
}
public DescribeStatisticalRankingResponse uaType(String uaType) {
this.uaType = uaType;
return this;
}
/**
* Get uaType
* @return uaType
**/
@Schema(description = "")
public String getUaType() {
return uaType;
}
public void setUaType(String uaType) {
this.uaType = uaType;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
DescribeStatisticalRankingResponse describeStatisticalRankingResponse = (DescribeStatisticalRankingResponse) o;
return Objects.equals(this.item, describeStatisticalRankingResponse.item) &&
Objects.equals(this.metric, describeStatisticalRankingResponse.metric) &&
Objects.equals(this.rankingDataList, describeStatisticalRankingResponse.rankingDataList) &&
Objects.equals(this.uaType, describeStatisticalRankingResponse.uaType);
}
@Override
public int hashCode() {
return Objects.hash(item, metric, rankingDataList, uaType);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class DescribeStatisticalRankingResponse {\n");
sb.append(" item: ").append(toIndentedString(item)).append("\n");
sb.append(" metric: ").append(toIndentedString(metric)).append("\n");
sb.append(" rankingDataList: ").append(toIndentedString(rankingDataList)).append("\n");
sb.append(" uaType: ").append(toIndentedString(uaType)).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 ");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy