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

com.aliyun.dingtalkworkflow_1_0.models.QueryFormByBizTypeRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class QueryFormByBizTypeRequest extends TeaModel {
    // 应用搭建id
    @NameInMap("appUuid")
    public String appUuid;

    // 表单业务标识
    @NameInMap("bizTypes")
    public java.util.List bizTypes;

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

    public QueryFormByBizTypeRequest setAppUuid(String appUuid) {
        this.appUuid = appUuid;
        return this;
    }
    public String getAppUuid() {
        return this.appUuid;
    }

    public QueryFormByBizTypeRequest setBizTypes(java.util.List bizTypes) {
        this.bizTypes = bizTypes;
        return this;
    }
    public java.util.List getBizTypes() {
        return this.bizTypes;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy