com.aliyun.dingtalkworkflow_1_0.models.GetConditionFormComponentRequest 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 GetConditionFormComponentRequest extends TeaModel {
/**
* example:
* 10
*/
@NameInMap("agentId")
public Long agentId;
/**
* This parameter is required.
*
* example:
* PROC-xxx
*/
@NameInMap("processCode")
public String processCode;
public static GetConditionFormComponentRequest build(java.util.Map map) throws Exception {
GetConditionFormComponentRequest self = new GetConditionFormComponentRequest();
return TeaModel.build(map, self);
}
public GetConditionFormComponentRequest setAgentId(Long agentId) {
this.agentId = agentId;
return this;
}
public Long getAgentId() {
return this.agentId;
}
public GetConditionFormComponentRequest setProcessCode(String processCode) {
this.processCode = processCode;
return this;
}
public String getProcessCode() {
return this.processCode;
}
}