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

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

The 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 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy