![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkworkflow_1_0.models.FormComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// 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