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

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

There is a newer version: 2.1.88
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 PullDeviceToGroupRequest extends TeaModel {
    @NameInMap("deviceCodes")
    public java.util.List deviceCodes;

    @NameInMap("deviceUuids")
    public java.util.List deviceUuids;

    /**
     * 

This parameter is required.

* * example: *

cide+m5TmAcxA3OU6Un59xxxx==

*/ @NameInMap("openConversationId") public String openConversationId; /** * example: *

manager1111

*/ @NameInMap("operator") public String operator; public static PullDeviceToGroupRequest build(java.util.Map map) throws Exception { PullDeviceToGroupRequest self = new PullDeviceToGroupRequest(); return TeaModel.build(map, self); } public PullDeviceToGroupRequest setDeviceCodes(java.util.List deviceCodes) { this.deviceCodes = deviceCodes; return this; } public java.util.List getDeviceCodes() { return this.deviceCodes; } public PullDeviceToGroupRequest setDeviceUuids(java.util.List deviceUuids) { this.deviceUuids = deviceUuids; return this; } public java.util.List getDeviceUuids() { return this.deviceUuids; } public PullDeviceToGroupRequest setOpenConversationId(String openConversationId) { this.openConversationId = openConversationId; return this; } public String getOpenConversationId() { return this.openConversationId; } public PullDeviceToGroupRequest setOperator(String operator) { this.operator = operator; return this; } public String getOperator() { return this.operator; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy