com.aliyun.dingtalkdevicemng_1_0.models.UninstallDeviceRobotRequest 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 UninstallDeviceRobotRequest extends TeaModel {
/**
* example:
* xxxxx
*/
@NameInMap("deviceCode")
public String deviceCode;
/**
* example:
* xxxxx
*/
@NameInMap("uuid")
public String uuid;
public static UninstallDeviceRobotRequest build(java.util.Map map) throws Exception {
UninstallDeviceRobotRequest self = new UninstallDeviceRobotRequest();
return TeaModel.build(map, self);
}
public UninstallDeviceRobotRequest setDeviceCode(String deviceCode) {
this.deviceCode = deviceCode;
return this;
}
public String getDeviceCode() {
return this.deviceCode;
}
public UninstallDeviceRobotRequest setUuid(String uuid) {
this.uuid = uuid;
return this;
}
public String getUuid() {
return this.uuid;
}
}