com.aliyun.dingtalkyida_2_0.models.CreateOrUpdateFormDataRequest 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_2_0.models;
import com.aliyun.tea.*;
public class CreateOrUpdateFormDataRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* APP_XCE0EVXS6DYG3YDYC5RD
*/
@NameInMap("appType")
public String appType;
/**
* This parameter is required.
*
* example:
* {"countrySelectField_l0c1cwiu":[{"value":"US"}]}
*/
@NameInMap("formDataJson")
public String formDataJson;
/**
* This parameter is required.
*
* example:
* FORM-GX866MC1NC1VOFF6WVQW33FD16E23L3CPMKVKA
*/
@NameInMap("formUuid")
public String formUuid;
/**
* example:
* false
*/
@NameInMap("noExecuteExpression")
public Boolean noExecuteExpression;
/**
* This parameter is required.
*
* example:
* [{"key":"currentNodeName","value":"当前审批节点名称","type":"TEXT","operator":"like","componentName":"TextField"}]。详情参考 https://www.yuque.com/yida/support/agb8im#F4S8e
*/
@NameInMap("searchCondition")
public String searchCondition;
/**
* This parameter is required.
*
* example:
* 09866181UTZVVD4R3DC955FNKIM52HVPU5WWK7
*/
@NameInMap("systemToken")
public String systemToken;
/**
* example:
* false
*/
@NameInMap("useAlias")
public Boolean useAlias;
/**
* This parameter is required.
*
* example:
* ding173982232112232
*/
@NameInMap("userId")
public String userId;
public static CreateOrUpdateFormDataRequest build(java.util.Map map) throws Exception {
CreateOrUpdateFormDataRequest self = new CreateOrUpdateFormDataRequest();
return TeaModel.build(map, self);
}
public CreateOrUpdateFormDataRequest setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public CreateOrUpdateFormDataRequest setFormDataJson(String formDataJson) {
this.formDataJson = formDataJson;
return this;
}
public String getFormDataJson() {
return this.formDataJson;
}
public CreateOrUpdateFormDataRequest setFormUuid(String formUuid) {
this.formUuid = formUuid;
return this;
}
public String getFormUuid() {
return this.formUuid;
}
public CreateOrUpdateFormDataRequest setNoExecuteExpression(Boolean noExecuteExpression) {
this.noExecuteExpression = noExecuteExpression;
return this;
}
public Boolean getNoExecuteExpression() {
return this.noExecuteExpression;
}
public CreateOrUpdateFormDataRequest setSearchCondition(String searchCondition) {
this.searchCondition = searchCondition;
return this;
}
public String getSearchCondition() {
return this.searchCondition;
}
public CreateOrUpdateFormDataRequest setSystemToken(String systemToken) {
this.systemToken = systemToken;
return this;
}
public String getSystemToken() {
return this.systemToken;
}
public CreateOrUpdateFormDataRequest setUseAlias(Boolean useAlias) {
this.useAlias = useAlias;
return this;
}
public Boolean getUseAlias() {
return this.useAlias;
}
public CreateOrUpdateFormDataRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}