
com.aliyun.dingtalkrobot_1_0.models.BatchOTOQueryRequest 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 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