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

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

There is a newer version: 2.1.88
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 FormComponent extends TeaModel {
    @NameInMap("children")
    public java.util.List children;

    /**
     * 

This parameter is required.

* * example: *

TextField

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

This parameter is required.

*/ @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 - 2025 Weber Informatics LLC | Privacy Policy