com.aliyun.ens20171110.models.CreateForwardEntryResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ens20171110 Show documentation
Show all versions of ens20171110 Show documentation
Alibaba Cloud edge node service (20171110) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ens20171110.models;
import com.aliyun.tea.*;
public class CreateForwardEntryResponseBody extends TeaModel {
/**
* The ID of the DNAT entry.
*
* example:
* fwd-5tc07cw14metghn3siv4ak8do
*/
@NameInMap("ForwardEntryId")
public String forwardEntryId;
/**
* The ID of the request.
*
* example:
* EF6D6FA4-DACA-5822-A981-81006271D263
*/
@NameInMap("RequestId")
public String requestId;
public static CreateForwardEntryResponseBody build(java.util.Map map) throws Exception {
CreateForwardEntryResponseBody self = new CreateForwardEntryResponseBody();
return TeaModel.build(map, self);
}
public CreateForwardEntryResponseBody setForwardEntryId(String forwardEntryId) {
this.forwardEntryId = forwardEntryId;
return this;
}
public String getForwardEntryId() {
return this.forwardEntryId;
}
public CreateForwardEntryResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy