com.aliyun.iqs20240712.models.RectangleTrafficStatusResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iqs20240712 Show documentation
Show all versions of iqs20240712 Show documentation
Alibaba Cloud IQS (20240712) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.iqs20240712.models;
import com.aliyun.tea.*;
public class RectangleTrafficStatusResponseBody extends TeaModel {
@NameInMap("data")
public java.util.List data;
/**
* example:
* success
*/
@NameInMap("errorCode")
public String errorCode;
/**
* example:
* Access was denied
*/
@NameInMap("errorMessage")
public String errorMessage;
/**
* Id of the request
*
* example:
* 78032F8B-0157-53F9-B1A8-3BD86ADE38D0
*/
@NameInMap("requestId")
public String requestId;
/**
* example:
* True
*/
@NameInMap("success")
public Boolean success;
public static RectangleTrafficStatusResponseBody build(java.util.Map map) throws Exception {
RectangleTrafficStatusResponseBody self = new RectangleTrafficStatusResponseBody();
return TeaModel.build(map, self);
}
public RectangleTrafficStatusResponseBody setData(java.util.List data) {
this.data = data;
return this;
}
public java.util.List getData() {
return this.data;
}
public RectangleTrafficStatusResponseBody setErrorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
public String getErrorCode() {
return this.errorCode;
}
public RectangleTrafficStatusResponseBody setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
public String getErrorMessage() {
return this.errorMessage;
}
public RectangleTrafficStatusResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public RectangleTrafficStatusResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public static class RectangleTrafficStatusResponseBodyDataEvaluation extends TeaModel {
/**
* example:
* 0.00%
*/
@NameInMap("blockedPercentage")
public String blockedPercentage;
/**
* example:
* 30.77%
*/
@NameInMap("clearPercentage")
public String clearPercentage;
@NameInMap("description")
public String description;
/**
* example:
* 7.59%
*/
@NameInMap("heavyPercentage")
public String heavyPercentage;
/**
* example:
* 2
*/
@NameInMap("status")
public String status;
/**
* example:
* 61.45%
*/
@NameInMap("unknownPercentage")
public String unknownPercentage;
public static RectangleTrafficStatusResponseBodyDataEvaluation build(java.util.Map map) throws Exception {
RectangleTrafficStatusResponseBodyDataEvaluation self = new RectangleTrafficStatusResponseBodyDataEvaluation();
return TeaModel.build(map, self);
}
public RectangleTrafficStatusResponseBodyDataEvaluation setBlockedPercentage(String blockedPercentage) {
this.blockedPercentage = blockedPercentage;
return this;
}
public String getBlockedPercentage() {
return this.blockedPercentage;
}
public RectangleTrafficStatusResponseBodyDataEvaluation setClearPercentage(String clearPercentage) {
this.clearPercentage = clearPercentage;
return this;
}
public String getClearPercentage() {
return this.clearPercentage;
}
public RectangleTrafficStatusResponseBodyDataEvaluation setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public RectangleTrafficStatusResponseBodyDataEvaluation setHeavyPercentage(String heavyPercentage) {
this.heavyPercentage = heavyPercentage;
return this;
}
public String getHeavyPercentage() {
return this.heavyPercentage;
}
public RectangleTrafficStatusResponseBodyDataEvaluation setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
public RectangleTrafficStatusResponseBodyDataEvaluation setUnknownPercentage(String unknownPercentage) {
this.unknownPercentage = unknownPercentage;
return this;
}
public String getUnknownPercentage() {
return this.unknownPercentage;
}
}
public static class RectangleTrafficStatusResponseBodyData extends TeaModel {
@NameInMap("description")
public String description;
@NameInMap("evaluation")
public RectangleTrafficStatusResponseBodyDataEvaluation evaluation;
public static RectangleTrafficStatusResponseBodyData build(java.util.Map map) throws Exception {
RectangleTrafficStatusResponseBodyData self = new RectangleTrafficStatusResponseBodyData();
return TeaModel.build(map, self);
}
public RectangleTrafficStatusResponseBodyData setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public RectangleTrafficStatusResponseBodyData setEvaluation(RectangleTrafficStatusResponseBodyDataEvaluation evaluation) {
this.evaluation = evaluation;
return this;
}
public RectangleTrafficStatusResponseBodyDataEvaluation getEvaluation() {
return this.evaluation;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy