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

com.aliyun.dingtalkdevicemng_1_0.models.RemoveDeviceFromGroupRequest Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkdevicemng_1_0.models;

import com.aliyun.tea.*;

public class RemoveDeviceFromGroupRequest extends TeaModel {
    // 设备编号列表(与设备唯一标识列表二选一)
    @NameInMap("deviceCodes")
    public java.util.List deviceCodes;

    // 设备唯一标识列表(与设备编码列表二选一)
    @NameInMap("deviceUuids")
    public java.util.List deviceUuids;

    // 开放群唯一标识
    @NameInMap("openConversationId")
    public String openConversationId;

    // 操作人唯一标识
    @NameInMap("operator")
    public String operator;

    public static RemoveDeviceFromGroupRequest build(java.util.Map map) throws Exception {
        RemoveDeviceFromGroupRequest self = new RemoveDeviceFromGroupRequest();
        return TeaModel.build(map, self);
    }

    public RemoveDeviceFromGroupRequest setDeviceCodes(java.util.List deviceCodes) {
        this.deviceCodes = deviceCodes;
        return this;
    }
    public java.util.List getDeviceCodes() {
        return this.deviceCodes;
    }

    public RemoveDeviceFromGroupRequest setDeviceUuids(java.util.List deviceUuids) {
        this.deviceUuids = deviceUuids;
        return this;
    }
    public java.util.List getDeviceUuids() {
        return this.deviceUuids;
    }

    public RemoveDeviceFromGroupRequest setOpenConversationId(String openConversationId) {
        this.openConversationId = openConversationId;
        return this;
    }
    public String getOpenConversationId() {
        return this.openConversationId;
    }

    public RemoveDeviceFromGroupRequest setOperator(String operator) {
        this.operator = operator;
        return this;
    }
    public String getOperator() {
        return this.operator;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy