All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.amptest20201230.models.JeepTetstResponseBody Maven / Gradle / Ivy

There is a newer version: 6.5.6
Show newest version
// 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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy