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

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

There is a newer version: 2.1.67
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 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; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy