com.aliyun.dingtalkdevicemng_1_0.models.EditDeviceAdminRequest 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 EditDeviceAdminRequest extends TeaModel {
/**
* example:
* xxxxxx
*/
@NameInMap("deviceCode")
public String deviceCode;
/**
* example:
* xxxxx
*/
@NameInMap("roleUuid")
public String roleUuid;
/**
* This parameter is required.
*/
@NameInMap("userIds")
public java.util.List userIds;
/**
* example:
* xxxxxx
*/
@NameInMap("uuid")
public String uuid;
public static EditDeviceAdminRequest build(java.util.Map map) throws Exception {
EditDeviceAdminRequest self = new EditDeviceAdminRequest();
return TeaModel.build(map, self);
}
public EditDeviceAdminRequest setDeviceCode(String deviceCode) {
this.deviceCode = deviceCode;
return this;
}
public String getDeviceCode() {
return this.deviceCode;
}
public EditDeviceAdminRequest setRoleUuid(String roleUuid) {
this.roleUuid = roleUuid;
return this;
}
public String getRoleUuid() {
return this.roleUuid;
}
public EditDeviceAdminRequest setUserIds(java.util.List userIds) {
this.userIds = userIds;
return this;
}
public java.util.List getUserIds() {
return this.userIds;
}
public EditDeviceAdminRequest setUuid(String uuid) {
this.uuid = uuid;
return this;
}
public String getUuid() {
return this.uuid;
}
}