com.aliyun.dingtalkworkflow_1_0.models.GetConditionFormComponentResponseBody 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 GetConditionFormComponentResponseBody extends TeaModel {
@NameInMap("result")
public java.util.List result;
public static GetConditionFormComponentResponseBody build(java.util.Map map) throws Exception {
GetConditionFormComponentResponseBody self = new GetConditionFormComponentResponseBody();
return TeaModel.build(map, self);
}
public GetConditionFormComponentResponseBody setResult(java.util.List result) {
this.result = result;
return this;
}
public java.util.List getResult() {
return this.result;
}
public static class GetConditionFormComponentResponseBodyResult extends TeaModel {
/**
* This parameter is required.
*
* example:
* TextField
*/
@NameInMap("id")
public String id;
/**
* This parameter is required.
*
* example:
* 输入框
*/
@NameInMap("label")
public String label;
public static GetConditionFormComponentResponseBodyResult build(java.util.Map map) throws Exception {
GetConditionFormComponentResponseBodyResult self = new GetConditionFormComponentResponseBodyResult();
return TeaModel.build(map, self);
}
public GetConditionFormComponentResponseBodyResult setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public GetConditionFormComponentResponseBodyResult setLabel(String label) {
this.label = label;
return this;
}
public String getLabel() {
return this.label;
}
}
}