com.aliyun.amptest20201230.models.HuichengTestGrayThirdResponseBody 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 HuichengTestGrayThirdResponseBody extends TeaModel {
@NameInMap("RequestId")
public String requestId;
@NameInMap("Size")
public Integer size;
@NameInMap("Value")
public String value;
public static HuichengTestGrayThirdResponseBody build(java.util.Map map) throws Exception {
HuichengTestGrayThirdResponseBody self = new HuichengTestGrayThirdResponseBody();
return TeaModel.build(map, self);
}
public HuichengTestGrayThirdResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public HuichengTestGrayThirdResponseBody setSize(Integer size) {
this.size = size;
return this;
}
public Integer getSize() {
return this.size;
}
public HuichengTestGrayThirdResponseBody setValue(String value) {
this.value = value;
return this;
}
public String getValue() {
return this.value;
}
}