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

com.aliyun.dingtalkservice_group_1_0.models.IntentionCategoryStatisticsResponseBody 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.dingtalkservice_group_1_0.models;

import com.aliyun.tea.*;

public class IntentionCategoryStatisticsResponseBody extends TeaModel {
    // 统计明细
    @NameInMap("intentionCategoryRecords")
    public java.util.List intentionCategoryRecords;

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

    public IntentionCategoryStatisticsResponseBody setIntentionCategoryRecords(java.util.List intentionCategoryRecords) {
        this.intentionCategoryRecords = intentionCategoryRecords;
        return this;
    }
    public java.util.List getIntentionCategoryRecords() {
        return this.intentionCategoryRecords;
    }

    public static class IntentionCategoryStatisticsResponseBodyIntentionCategoryRecords extends TeaModel {
        // 求助咨询量
        @NameInMap("askCount")
        public Long askCount;

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

        // 不满辱骂量
        @NameInMap("dissatisfiedCount")
        public Long dissatisfiedCount;

        // 产品异常量
        @NameInMap("errorCount")
        public Long errorCount;

        // 赞扬量
        @NameInMap("praiseCount")
        public Long praiseCount;

        // 产品建议量
        @NameInMap("suggestCount")
        public Long suggestCount;

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

        public IntentionCategoryStatisticsResponseBodyIntentionCategoryRecords setAskCount(Long askCount) {
            this.askCount = askCount;
            return this;
        }
        public Long getAskCount() {
            return this.askCount;
        }

        public IntentionCategoryStatisticsResponseBodyIntentionCategoryRecords setCategoryName(String categoryName) {
            this.categoryName = categoryName;
            return this;
        }
        public String getCategoryName() {
            return this.categoryName;
        }

        public IntentionCategoryStatisticsResponseBodyIntentionCategoryRecords setDissatisfiedCount(Long dissatisfiedCount) {
            this.dissatisfiedCount = dissatisfiedCount;
            return this;
        }
        public Long getDissatisfiedCount() {
            return this.dissatisfiedCount;
        }

        public IntentionCategoryStatisticsResponseBodyIntentionCategoryRecords setErrorCount(Long errorCount) {
            this.errorCount = errorCount;
            return this;
        }
        public Long getErrorCount() {
            return this.errorCount;
        }

        public IntentionCategoryStatisticsResponseBodyIntentionCategoryRecords setPraiseCount(Long praiseCount) {
            this.praiseCount = praiseCount;
            return this;
        }
        public Long getPraiseCount() {
            return this.praiseCount;
        }

        public IntentionCategoryStatisticsResponseBodyIntentionCategoryRecords setSuggestCount(Long suggestCount) {
            this.suggestCount = suggestCount;
            return this;
        }
        public Long getSuggestCount() {
            return this.suggestCount;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy