com.aliyun.ens20171110.models.DeleteDeviceInternetPortResponseBody 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 DeleteDeviceInternetPortResponseBody extends TeaModel {
/**
* The ID of the request.
*
* example:
* 51F57D60-7946-5EE1-A973-A3CCCCF2EF5B
*/
@NameInMap("RequestId")
public String requestId;
/**
* The list of rules.
*/
@NameInMap("RuleIds")
public java.util.List ruleIds;
public static DeleteDeviceInternetPortResponseBody build(java.util.Map map) throws Exception {
DeleteDeviceInternetPortResponseBody self = new DeleteDeviceInternetPortResponseBody();
return TeaModel.build(map, self);
}
public DeleteDeviceInternetPortResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DeleteDeviceInternetPortResponseBody setRuleIds(java.util.List ruleIds) {
this.ruleIds = ruleIds;
return this;
}
public java.util.List getRuleIds() {
return this.ruleIds;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy