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

com.aliyun.dingtalkindustry_1_0.models.QueryUserProbCodeDictionaryResponseBody 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.dingtalkindustry_1_0.models;

import com.aliyun.tea.*;

public class QueryUserProbCodeDictionaryResponseBody extends TeaModel {
    // code列表
    @NameInMap("content")
    public java.util.List content;

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

    public QueryUserProbCodeDictionaryResponseBody setContent(java.util.List content) {
        this.content = content;
        return this;
    }
    public java.util.List getContent() {
        return this.content;
    }

    public static class QueryUserProbCodeDictionaryResponseBodyContent extends TeaModel {
        // 分类
        @NameInMap("category")
        public String category;

        // 固定字段标识
        @NameInMap("code")
        public String code;

        // 展示名字
        @NameInMap("displayName")
        public String displayName;

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

        public QueryUserProbCodeDictionaryResponseBodyContent setCategory(String category) {
            this.category = category;
            return this;
        }
        public String getCategory() {
            return this.category;
        }

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

        public QueryUserProbCodeDictionaryResponseBodyContent setDisplayName(String displayName) {
            this.displayName = displayName;
            return this;
        }
        public String getDisplayName() {
            return this.displayName;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy