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

com.aliyun.dingtalkapaas_1_0.models.QueryTemplateCategorysResponseBody 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.dingtalkapaas_1_0.models;

import com.aliyun.tea.*;

public class QueryTemplateCategorysResponseBody extends TeaModel {
    @NameInMap("categoryList")
    public java.util.List categoryList;

    // 总数
    @NameInMap("total")
    public String total;

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

    public QueryTemplateCategorysResponseBody setCategoryList(java.util.List categoryList) {
        this.categoryList = categoryList;
        return this;
    }
    public java.util.List getCategoryList() {
        return this.categoryList;
    }

    public QueryTemplateCategorysResponseBody setTotal(String total) {
        this.total = total;
        return this;
    }
    public String getTotal() {
        return this.total;
    }

    public static class QueryTemplateCategorysResponseBodyCategoryList extends TeaModel {
        // 分类编码
        @NameInMap("code")
        public String code;

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

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

        public QueryTemplateCategorysResponseBodyCategoryList setCode(String code) {
            this.code = code;
            return this;
        }
        public String getCode() {
            return this.code;
        }

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

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy