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

com.aliyun.dingtalkexclusive_1_0.models.CreateTrustedDeviceBatchRequest 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.dingtalkexclusive_1_0.models;

import com.aliyun.tea.*;

public class CreateTrustedDeviceBatchRequest extends TeaModel {
    // mac地址列表
    @NameInMap("macAddressList")
    public java.util.List macAddressList;

    // 平台
    @NameInMap("platform")
    public String platform;

    // 员工id
    @NameInMap("userId")
    public String userId;

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

    public CreateTrustedDeviceBatchRequest setMacAddressList(java.util.List macAddressList) {
        this.macAddressList = macAddressList;
        return this;
    }
    public java.util.List getMacAddressList() {
        return this.macAddressList;
    }

    public CreateTrustedDeviceBatchRequest setPlatform(String platform) {
        this.platform = platform;
        return this;
    }
    public String getPlatform() {
        return this.platform;
    }

    public CreateTrustedDeviceBatchRequest setUserId(String userId) {
        this.userId = userId;
        return this;
    }
    public String getUserId() {
        return this.userId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy