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

com.aliyun.dingtalkdoc_2_0.models.ListSpaceSectionsResponseBody Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class ListSpaceSectionsResponseBody extends TeaModel {
    @NameInMap("items")
    public java.util.List items;

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

    public ListSpaceSectionsResponseBody setItems(java.util.List items) {
        this.items = items;
        return this;
    }
    public java.util.List getItems() {
        return this.items;
    }

    public static class ListSpaceSectionsResponseBodyItems extends TeaModel {
        /**
         * example:
         * 

base

*/ @NameInMap("displayType") public String displayType; /** * example: *

abc

*/ @NameInMap("id") public String id; /** * example: *

测试分组

*/ @NameInMap("name") public String name; /** * example: *

1

*/ @NameInMap("spaceNum") public Integer spaceNum; @NameInMap("spaces") public java.util.List spaces; public static ListSpaceSectionsResponseBodyItems build(java.util.Map map) throws Exception { ListSpaceSectionsResponseBodyItems self = new ListSpaceSectionsResponseBodyItems(); return TeaModel.build(map, self); } public ListSpaceSectionsResponseBodyItems setDisplayType(String displayType) { this.displayType = displayType; return this; } public String getDisplayType() { return this.displayType; } public ListSpaceSectionsResponseBodyItems setId(String id) { this.id = id; return this; } public String getId() { return this.id; } public ListSpaceSectionsResponseBodyItems setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public ListSpaceSectionsResponseBodyItems setSpaceNum(Integer spaceNum) { this.spaceNum = spaceNum; return this; } public Integer getSpaceNum() { return this.spaceNum; } public ListSpaceSectionsResponseBodyItems setSpaces(java.util.List spaces) { this.spaces = spaces; return this; } public java.util.List getSpaces() { return this.spaces; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy