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

com.aliyun.dingtalkworkbench_1_0.models.ListWorkBenchGroupResponseBody Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkworkbench_1_0.models;

import com.aliyun.tea.*;

public class ListWorkBenchGroupResponseBody extends TeaModel {
    // 应用列表
    @NameInMap("groupList")
    public java.util.List groupList;

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

    public ListWorkBenchGroupResponseBody setGroupList(java.util.List groupList) {
        this.groupList = groupList;
        return this;
    }
    public java.util.List getGroupList() {
        return this.groupList;
    }

    public static class ListWorkBenchGroupResponseBodyGroupList extends TeaModel {
        // 分组id
        @NameInMap("componentId")
        public String componentId;

        // 分组名称
        @NameInMap("name")
        public String name;

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

        public ListWorkBenchGroupResponseBodyGroupList setComponentId(String componentId) {
            this.componentId = componentId;
            return this;
        }
        public String getComponentId() {
            return this.componentId;
        }

        public ListWorkBenchGroupResponseBodyGroupList setName(String name) {
            this.name = name;
            return this;
        }
        public String getName() {
            return this.name;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy