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

com.aliyun.dingtalkh3yun_1_0.models.BatchInsertBizObjectRequest Maven / Gradle / Ivy

There is a newer version: 2.1.50
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkh3yun_1_0.models;

import com.aliyun.tea.*;

public class BatchInsertBizObjectRequest extends TeaModel {
    // 待新增的业对象json数组
    @NameInMap("bizObjectJsonArray")
    public java.util.List bizObjectJsonArray;

    // 是否是草稿数据。true=创建草稿数据,false=创建生效数据
    @NameInMap("isDraft")
    public Boolean isDraft;

    // 操作用户id
    @NameInMap("opUserId")
    public String opUserId;

    // 表单编码
    @NameInMap("schemaCode")
    public String schemaCode;

    public static BatchInsertBizObjectRequest build(java.util.Map map) throws Exception {
        BatchInsertBizObjectRequest self = new BatchInsertBizObjectRequest();
        return TeaModel.build(map, self);
    }

    public BatchInsertBizObjectRequest setBizObjectJsonArray(java.util.List bizObjectJsonArray) {
        this.bizObjectJsonArray = bizObjectJsonArray;
        return this;
    }
    public java.util.List getBizObjectJsonArray() {
        return this.bizObjectJsonArray;
    }

    public BatchInsertBizObjectRequest setIsDraft(Boolean isDraft) {
        this.isDraft = isDraft;
        return this;
    }
    public Boolean getIsDraft() {
        return this.isDraft;
    }

    public BatchInsertBizObjectRequest setOpUserId(String opUserId) {
        this.opUserId = opUserId;
        return this;
    }
    public String getOpUserId() {
        return this.opUserId;
    }

    public BatchInsertBizObjectRequest setSchemaCode(String schemaCode) {
        this.schemaCode = schemaCode;
        return this;
    }
    public String getSchemaCode() {
        return this.schemaCode;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy