com.antgroup.antchain.openapi.bot.models.DeviceDisableData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-bot Show documentation
Show all versions of openapi-bot Show documentation
Ant Chain BOT SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.bot.models;
import com.aliyun.tea.*;
public class DeviceDisableData extends TeaModel {
// 设备sn号
@NameInMap("device_sn")
@Validation(required = true)
public String deviceSn;
// 厂商
@NameInMap("corp_name")
@Validation(required = true)
public String corpName;
public static DeviceDisableData build(java.util.Map map) throws Exception {
DeviceDisableData self = new DeviceDisableData();
return TeaModel.build(map, self);
}
public DeviceDisableData setDeviceSn(String deviceSn) {
this.deviceSn = deviceSn;
return this;
}
public String getDeviceSn() {
return this.deviceSn;
}
public DeviceDisableData setCorpName(String corpName) {
this.corpName = corpName;
return this;
}
public String getCorpName() {
return this.corpName;
}
}