com.aliyun.dingtalkworkflow_1_0.models.DeleteProcessRequest 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.dingtalkworkflow_1_0.models;
import com.aliyun.tea.*;
public class DeleteProcessRequest extends TeaModel {
@NameInMap("cleanRunningTask")
public Boolean cleanRunningTask;
/**
* This parameter is required.
*
* example:
* proc-abc
*/
@NameInMap("processCode")
public String processCode;
public static DeleteProcessRequest build(java.util.Map map) throws Exception {
DeleteProcessRequest self = new DeleteProcessRequest();
return TeaModel.build(map, self);
}
public DeleteProcessRequest setCleanRunningTask(Boolean cleanRunningTask) {
this.cleanRunningTask = cleanRunningTask;
return this;
}
public Boolean getCleanRunningTask() {
return this.cleanRunningTask;
}
public DeleteProcessRequest setProcessCode(String processCode) {
this.processCode = processCode;
return this;
}
public String getProcessCode() {
return this.processCode;
}
}