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

com.aliyun.ens20171110.models.CreateClassicNetworkResponseBody Maven / Gradle / Ivy

There is a newer version: 7.7.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ens20171110.models;

import com.aliyun.tea.*;

public class CreateClassicNetworkResponseBody extends TeaModel {
    /**
     * 

The ID of the network.

* * example: *

n-5s9ayrxsd9hszrlt5fgv2****

*/ @NameInMap("NetworkId") public String networkId; /** *

The request ID.

* * example: *

1A004E06-AC1B-5806-BA5E-41AB6B02DE83

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy