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

com.aliyun.sas20181203.models.DescribeDefaultProxyInstallVersionResponseBody Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sas20181203.models;

import com.aliyun.tea.*;

public class DescribeDefaultProxyInstallVersionResponseBody extends TeaModel {
    /**
     * 

The default installation version.

* * example: *

proxy_01_03

*/ @NameInMap("InstallVersion") public String installVersion; /** *

The request ID.

* * example: *

F9FCB51A-5078-5D31-9C4D-3B25BEF068C7

*/ @NameInMap("RequestId") public String requestId; public static DescribeDefaultProxyInstallVersionResponseBody build(java.util.Map map) throws Exception { DescribeDefaultProxyInstallVersionResponseBody self = new DescribeDefaultProxyInstallVersionResponseBody(); return TeaModel.build(map, self); } public DescribeDefaultProxyInstallVersionResponseBody setInstallVersion(String installVersion) { this.installVersion = installVersion; return this; } public String getInstallVersion() { return this.installVersion; } public DescribeDefaultProxyInstallVersionResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy