All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkyida_1_0.models.BatchSaveFormDataRequest Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkyida_1_0.models;

import com.aliyun.tea.*;

public class BatchSaveFormDataRequest 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: *

"{"countrySelectField_l0c1cwiu":[{"value":"US"}],"addressField_l0c1cwiy":{"address":"111","regionIds":[460000,469027,469023401],"regionText":[{"en_US":"hai+nan+sheng","zh_CN":"海南省"},{"en_US":"cheng+mai+xian","zh_CN":"澄迈县"},{"en_US":"guo+ying+hong+gang+nong+chang","zh_CN":"国营红岗农场"}]}}"

*/ @NameInMap("formDataJsonList") public java.util.List formDataJsonList; /** *

This parameter is required.

* * example: *

FORM-GX866MC1NC1VOFF6WVQW33FD16E23L3CPMKVKA

*/ @NameInMap("formUuid") public String formUuid; /** * example: *

true

*/ @NameInMap("keepRunningAfterException") public Boolean keepRunningAfterException; /** * example: *

true

*/ @NameInMap("noExecuteExpression") public Boolean noExecuteExpression; /** *

This parameter is required.

* * example: *

09866181UTZVVD4R3DC955FNKIM52HVPU5WWK7

*/ @NameInMap("systemToken") public String systemToken; /** *

This parameter is required.

* * example: *

ding173982232112232

*/ @NameInMap("userId") public String userId; public static BatchSaveFormDataRequest build(java.util.Map map) throws Exception { BatchSaveFormDataRequest self = new BatchSaveFormDataRequest(); return TeaModel.build(map, self); } public BatchSaveFormDataRequest setAppType(String appType) { this.appType = appType; return this; } public String getAppType() { return this.appType; } public BatchSaveFormDataRequest setAsynchronousExecution(Boolean asynchronousExecution) { this.asynchronousExecution = asynchronousExecution; return this; } public Boolean getAsynchronousExecution() { return this.asynchronousExecution; } public BatchSaveFormDataRequest setFormDataJsonList(java.util.List formDataJsonList) { this.formDataJsonList = formDataJsonList; return this; } public java.util.List getFormDataJsonList() { return this.formDataJsonList; } public BatchSaveFormDataRequest setFormUuid(String formUuid) { this.formUuid = formUuid; return this; } public String getFormUuid() { return this.formUuid; } public BatchSaveFormDataRequest setKeepRunningAfterException(Boolean keepRunningAfterException) { this.keepRunningAfterException = keepRunningAfterException; return this; } public Boolean getKeepRunningAfterException() { return this.keepRunningAfterException; } public BatchSaveFormDataRequest setNoExecuteExpression(Boolean noExecuteExpression) { this.noExecuteExpression = noExecuteExpression; return this; } public Boolean getNoExecuteExpression() { return this.noExecuteExpression; } public BatchSaveFormDataRequest setSystemToken(String systemToken) { this.systemToken = systemToken; return this; } public String getSystemToken() { return this.systemToken; } public BatchSaveFormDataRequest setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy