com.aliyun.dingtalkyida_1_0.models.ExecuteBatchTaskRequest 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.dingtalkyida_1_0.models;
import com.aliyun.tea.*;
public class ExecuteBatchTaskRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* APP_XCE0EVXS6DYG3YDYC5RD
*/
@NameInMap("appType")
public String appType;
/**
* This parameter is required.
*
* example:
* 备选值:agree/disagree
*/
@NameInMap("outResult")
public String outResult;
/**
* example:
* OK
*/
@NameInMap("remark")
public String remark;
/**
* This parameter is required.
*
* example:
* 09866181UTZVVD4R3DC955FNKIM52HVPU5WWK7
*/
@NameInMap("systemToken")
public String systemToken;
/**
* This parameter is required.
*
* example:
* [{"taskId":"2267855699","formInstId":"4d226eb1-1f4e-4348-a9cc-616477c3daa6"},{"taskId":"2267855700","formInstId":"905a922e-da05-4ef9-ba1c-db9ad60bbe60"}]
*/
@NameInMap("taskInformationList")
public String taskInformationList;
/**
* This parameter is required.
*
* example:
* ding173982232112232
*/
@NameInMap("userId")
public String userId;
public static ExecuteBatchTaskRequest build(java.util.Map map) throws Exception {
ExecuteBatchTaskRequest self = new ExecuteBatchTaskRequest();
return TeaModel.build(map, self);
}
public ExecuteBatchTaskRequest setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public ExecuteBatchTaskRequest setOutResult(String outResult) {
this.outResult = outResult;
return this;
}
public String getOutResult() {
return this.outResult;
}
public ExecuteBatchTaskRequest setRemark(String remark) {
this.remark = remark;
return this;
}
public String getRemark() {
return this.remark;
}
public ExecuteBatchTaskRequest setSystemToken(String systemToken) {
this.systemToken = systemToken;
return this;
}
public String getSystemToken() {
return this.systemToken;
}
public ExecuteBatchTaskRequest setTaskInformationList(String taskInformationList) {
this.taskInformationList = taskInformationList;
return this;
}
public String getTaskInformationList() {
return this.taskInformationList;
}
public ExecuteBatchTaskRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}