![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkrobot_1_0.models.BatchOTOQueryRequest 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.dingtalkrobot_1_0.models;
import com.aliyun.tea.*;
public class BatchOTOQueryRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* asdfasdfasdf
*/
@NameInMap("processQueryKey")
public String processQueryKey;
/**
* This parameter is required.
*
* example:
* dingcxx5317
*/
@NameInMap("robotCode")
public String robotCode;
public static BatchOTOQueryRequest build(java.util.Map map) throws Exception {
BatchOTOQueryRequest self = new BatchOTOQueryRequest();
return TeaModel.build(map, self);
}
public BatchOTOQueryRequest setProcessQueryKey(String processQueryKey) {
this.processQueryKey = processQueryKey;
return this;
}
public String getProcessQueryKey() {
return this.processQueryKey;
}
public BatchOTOQueryRequest setRobotCode(String robotCode) {
this.robotCode = robotCode;
return this;
}
public String getRobotCode() {
return this.robotCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy