
com.aliyun.dingtalkrobot_1_0.models.ClearRobotPluginRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkrobot_1_0.models;
import com.aliyun.tea.*;
public class ClearRobotPluginRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* dingkxnemxbqkifzl
*/
@NameInMap("robotCode")
public String robotCode;
public static ClearRobotPluginRequest build(java.util.Map map) throws Exception {
ClearRobotPluginRequest self = new ClearRobotPluginRequest();
return TeaModel.build(map, self);
}
public ClearRobotPluginRequest setRobotCode(String robotCode) {
this.robotCode = robotCode;
return this;
}
public String getRobotCode() {
return this.robotCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy