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

com.aliyun.dingtalkyida_1_0.models.GetFormComponentDefinitionListResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkyida_1_0.models;

import com.aliyun.tea.*;

public class GetFormComponentDefinitionListResponseBody extends TeaModel {
    @NameInMap("result")
    public java.util.List result;

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

    public GetFormComponentDefinitionListResponseBody setResult(java.util.List result) {
        this.result = result;
        return this;
    }
    public java.util.List getResult() {
        return this.result;
    }

    public static class GetFormComponentDefinitionListResponseBodyResult extends TeaModel {
        // componentName
        @NameInMap("componentName")
        public String componentName;

        // key
        @NameInMap("fieldId")
        public String fieldId;

        // label
        @NameInMap("label")
        public String label;

        // parentId
        @NameInMap("parentId")
        public String parentId;

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

        public GetFormComponentDefinitionListResponseBodyResult setComponentName(String componentName) {
            this.componentName = componentName;
            return this;
        }
        public String getComponentName() {
            return this.componentName;
        }

        public GetFormComponentDefinitionListResponseBodyResult setFieldId(String fieldId) {
            this.fieldId = fieldId;
            return this;
        }
        public String getFieldId() {
            return this.fieldId;
        }

        public GetFormComponentDefinitionListResponseBodyResult setLabel(String label) {
            this.label = label;
            return this;
        }
        public String getLabel() {
            return this.label;
        }

        public GetFormComponentDefinitionListResponseBodyResult setParentId(String parentId) {
            this.parentId = parentId;
            return this;
        }
        public String getParentId() {
            return this.parentId;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy