com.aliyun.amptest20201230.models.JeepTetstResponseBody 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 JeepTetstResponseBody extends TeaModel {
@NameInMap("InstanceId")
public String instanceId;
@NameInMap("RequestId")
public String requestId;
public static JeepTetstResponseBody build(java.util.Map map) throws Exception {
JeepTetstResponseBody self = new JeepTetstResponseBody();
return TeaModel.build(map, self);
}
public JeepTetstResponseBody setInstanceId(String instanceId) {
this.instanceId = instanceId;
return this;
}
public String getInstanceId() {
return this.instanceId;
}
public JeepTetstResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}