com.aliyun.dingtalkyida_1_0.models.BatchUpdateFormDataByInstanceMapRequest 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 BatchUpdateFormDataByInstanceMapRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* APP_XCE0EVXS6DYG3YDYC5RD
*/
@NameInMap("appType")
public String appType;
/**
* example:
* true
*/
@NameInMap("asynchronousExecution")
public Boolean asynchronousExecution;
/**
* This parameter is required.
*
* example:
* FORM-GX866MC1NC1VOFF6WVQW33FD16E23L3CPMKVKA
*/
@NameInMap("formUuid")
public String formUuid;
/**
* example:
* true
*/
@NameInMap("ignoreEmpty")
public Boolean ignoreEmpty;
/**
* example:
* true
*/
@NameInMap("noExecuteExpression")
public Boolean noExecuteExpression;
/**
* This parameter is required.
*
* example:
* 09866181UTZVVD4R3DC955FNKIM52HVPU5WWK7
*/
@NameInMap("systemToken")
public String systemToken;
/**
* This parameter is required.
*
* example:
* {"FINST-ANSFSNNDS2212NSKLKKSFD":"{"rateField_l0c1cwis":3,"countrySelectField_l0c1cwiu":[{"value":"US"}]}"}
*/
@NameInMap("updateFormDataJsonMap")
public java.util.Map updateFormDataJsonMap;
/**
* example:
* false
*/
@NameInMap("useLatestFormSchemaVersion")
public Boolean useLatestFormSchemaVersion;
/**
* This parameter is required.
*
* example:
* ding173982232112232
*/
@NameInMap("userId")
public String userId;
public static BatchUpdateFormDataByInstanceMapRequest build(java.util.Map map) throws Exception {
BatchUpdateFormDataByInstanceMapRequest self = new BatchUpdateFormDataByInstanceMapRequest();
return TeaModel.build(map, self);
}
public BatchUpdateFormDataByInstanceMapRequest setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public BatchUpdateFormDataByInstanceMapRequest setAsynchronousExecution(Boolean asynchronousExecution) {
this.asynchronousExecution = asynchronousExecution;
return this;
}
public Boolean getAsynchronousExecution() {
return this.asynchronousExecution;
}
public BatchUpdateFormDataByInstanceMapRequest setFormUuid(String formUuid) {
this.formUuid = formUuid;
return this;
}
public String getFormUuid() {
return this.formUuid;
}
public BatchUpdateFormDataByInstanceMapRequest setIgnoreEmpty(Boolean ignoreEmpty) {
this.ignoreEmpty = ignoreEmpty;
return this;
}
public Boolean getIgnoreEmpty() {
return this.ignoreEmpty;
}
public BatchUpdateFormDataByInstanceMapRequest setNoExecuteExpression(Boolean noExecuteExpression) {
this.noExecuteExpression = noExecuteExpression;
return this;
}
public Boolean getNoExecuteExpression() {
return this.noExecuteExpression;
}
public BatchUpdateFormDataByInstanceMapRequest setSystemToken(String systemToken) {
this.systemToken = systemToken;
return this;
}
public String getSystemToken() {
return this.systemToken;
}
public BatchUpdateFormDataByInstanceMapRequest setUpdateFormDataJsonMap(java.util.Map updateFormDataJsonMap) {
this.updateFormDataJsonMap = updateFormDataJsonMap;
return this;
}
public java.util.Map getUpdateFormDataJsonMap() {
return this.updateFormDataJsonMap;
}
public BatchUpdateFormDataByInstanceMapRequest setUseLatestFormSchemaVersion(Boolean useLatestFormSchemaVersion) {
this.useLatestFormSchemaVersion = useLatestFormSchemaVersion;
return this;
}
public Boolean getUseLatestFormSchemaVersion() {
return this.useLatestFormSchemaVersion;
}
public BatchUpdateFormDataByInstanceMapRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}