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

com.aliyun.dingtalkattendance_1_0.models.AttendanceBleDevicesRemoveRequest 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.dingtalkattendance_1_0.models;

import com.aliyun.tea.*;

public class AttendanceBleDevicesRemoveRequest extends TeaModel {
    // 蓝牙设备Id列表
    @NameInMap("deviceIdList")
    public java.util.List deviceIdList;

    // 考勤组Id
    @NameInMap("groupKey")
    public String groupKey;

    // 操作人id
    @NameInMap("opUserId")
    public String opUserId;

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

    public AttendanceBleDevicesRemoveRequest setDeviceIdList(java.util.List deviceIdList) {
        this.deviceIdList = deviceIdList;
        return this;
    }
    public java.util.List getDeviceIdList() {
        return this.deviceIdList;
    }

    public AttendanceBleDevicesRemoveRequest setGroupKey(String groupKey) {
        this.groupKey = groupKey;
        return this;
    }
    public String getGroupKey() {
        return this.groupKey;
    }

    public AttendanceBleDevicesRemoveRequest setOpUserId(String opUserId) {
        this.opUserId = opUserId;
        return this;
    }
    public String getOpUserId() {
        return this.opUserId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy