com.dingtalk.api.request.OapiProcessDeleteRequest Maven / Gradle / Ivy
The newest version!
package com.dingtalk.api.request;
import com.taobao.api.internal.mapping.ApiField;
import com.taobao.api.TaobaoObject;
import java.util.Map;
import java.util.List;
import com.taobao.api.ApiRuleException;
import com.taobao.api.BaseTaobaoRequest;
import com.dingtalk.api.DingTalkConstants;
import com.taobao.api.Constants;
import com.taobao.api.internal.util.TaobaoHashMap;
import com.taobao.api.internal.util.TaobaoUtils;
import com.taobao.api.internal.util.json.JSONWriter;
import com.dingtalk.api.response.OapiProcessDeleteResponse;
/**
* TOP DingTalk-API: dingtalk.oapi.process.delete request
*
* @author top auto create
* @since 1.0, 2019.12.30
*/
public class OapiProcessDeleteRequest extends BaseTaobaoRequest {
/**
* 请求对象
*/
private String request;
public void setRequest(String request) {
this.request = request;
}
public void setRequest(DeleteProcessRequest request) {
this.request = new JSONWriter(false,false,true).write(request);
}
public String getRequest() {
return this.request;
}
public String getApiMethodName() {
return "dingtalk.oapi.process.delete";
}
private String topResponseType = Constants.RESPONSE_TYPE_DINGTALK_OAPI;
public String getTopResponseType() {
return this.topResponseType;
}
public void setTopResponseType(String topResponseType) {
this.topResponseType = topResponseType;
}
public String getTopApiCallType() {
return DingTalkConstants.CALL_TYPE_OAPI;
}
private String topHttpMethod = DingTalkConstants.HTTP_METHOD_POST;
public String getTopHttpMethod() {
return this.topHttpMethod;
}
public void setTopHttpMethod(String topHttpMethod) {
this.topHttpMethod = topHttpMethod;
}
public void setHttpMethod(String httpMethod) {
this.setTopHttpMethod(httpMethod);
}
public Map getTextParams() {
TaobaoHashMap txtParams = new TaobaoHashMap();
txtParams.put("request", this.request);
if(this.udfParams != null) {
txtParams.putAll(this.udfParams);
}
return txtParams;
}
public Class getResponseClass() {
return OapiProcessDeleteResponse.class;
}
public void check() throws ApiRuleException {
}
/**
* 请求对象
*
* @author top auto create
* @since 1.0, null
*/
public static class DeleteProcessRequest extends TaobaoObject {
private static final long serialVersionUID = 6844564964965716159L;
/**
* 微应用agentId,ISV必填
*/
@ApiField("agentid")
private Long agentid;
/**
* 是否清理运行中的任务
*/
@ApiField("clean_running_task")
private Boolean cleanRunningTask;
/**
* 流程code
*/
@ApiField("process_code")
private String processCode;
public Long getAgentid() {
return this.agentid;
}
public void setAgentid(Long agentid) {
this.agentid = agentid;
}
public Boolean getCleanRunningTask() {
return this.cleanRunningTask;
}
public void setCleanRunningTask(Boolean cleanRunningTask) {
this.cleanRunningTask = cleanRunningTask;
}
public String getProcessCode() {
return this.processCode;
}
public void setProcessCode(String processCode) {
this.processCode = processCode;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy