![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkdevicemng_1_0.models.PullDeviceToGroupRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// 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