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

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

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkworkflow_1_0.models;

import com.aliyun.tea.*;

public class FormComponent extends TeaModel {
    // 子控件集合
    @NameInMap("children")
    public java.util.List children;

    // 控件类型
    @NameInMap("componentType")
    public String componentType;

    // 控件属性
    @NameInMap("props")
    public FormComponentProps props;

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

    public FormComponent setChildren(java.util.List children) {
        this.children = children;
        return this;
    }
    public java.util.List getChildren() {
        return this.children;
    }

    public FormComponent setComponentType(String componentType) {
        this.componentType = componentType;
        return this;
    }
    public String getComponentType() {
        return this.componentType;
    }

    public FormComponent setProps(FormComponentProps props) {
        this.props = props;
        return this;
    }
    public FormComponentProps getProps() {
        return this.props;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy