com.aliyun.amptest20201230.models.HuichengTestGrayResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of amptest20201230 Show documentation
Show all versions of amptest20201230 Show documentation
Alibaba Cloud AmpTest (20201230) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.amptest20201230.models;
import com.aliyun.tea.*;
public class HuichengTestGrayResponseBody extends TeaModel {
@NameInMap("RequestId")
public String requestId;
@NameInMap("Size")
public Integer size;
@NameInMap("Value")
public String value;
public static HuichengTestGrayResponseBody build(java.util.Map map) throws Exception {
HuichengTestGrayResponseBody self = new HuichengTestGrayResponseBody();
return TeaModel.build(map, self);
}
public HuichengTestGrayResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public HuichengTestGrayResponseBody setSize(Integer size) {
this.size = size;
return this;
}
public Integer getSize() {
return this.size;
}
public HuichengTestGrayResponseBody setValue(String value) {
this.value = value;
return this;
}
public String getValue() {
return this.value;
}
}