com.aliyun.dds20151201.models.AllocateNodePrivateNetworkAddressResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dds20151201.models;
import com.aliyun.tea.*;
public class AllocateNodePrivateNetworkAddressResponseBody extends TeaModel {
/**
* The request ID.
*
* example:
* 60EEBD77-227C-5B39-86EA-D89163C5****
*/
@NameInMap("RequestId")
public String requestId;
public static AllocateNodePrivateNetworkAddressResponseBody build(java.util.Map map) throws Exception {
AllocateNodePrivateNetworkAddressResponseBody self = new AllocateNodePrivateNetworkAddressResponseBody();
return TeaModel.build(map, self);
}
public AllocateNodePrivateNetworkAddressResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}