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

com.antgroup.antchain.openapi.bot.models.DeviceDisableData Maven / Gradle / Ivy

There is a newer version: 1.11.48
Show newest version
// 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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy