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

com.aliyun.dingtalkexclusive_1_0.models.GetCommentListResponseBody 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.dingtalkexclusive_1_0.models;

import com.aliyun.tea.*;

public class GetCommentListResponseBody extends TeaModel {
    @NameInMap("data")
    public java.util.List data;

    @NameInMap("totalCount")
    public Long totalCount;

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

    public GetCommentListResponseBody setData(java.util.List data) {
        this.data = data;
        return this;
    }
    public java.util.List getData() {
        return this.data;
    }

    public GetCommentListResponseBody setTotalCount(Long totalCount) {
        this.totalCount = totalCount;
        return this;
    }
    public Long getTotalCount() {
        return this.totalCount;
    }

    public static class GetCommentListResponseBodyData extends TeaModel {
        // 评论ID
        @NameInMap("commentId")
        public String commentId;

        // 评论时间
        @NameInMap("commentTime")
        public Float commentTime;

        // 评论者姓名
        @NameInMap("commentUserName")
        public String commentUserName;

        // 评论内容
        @NameInMap("content")
        public String content;

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

        public GetCommentListResponseBodyData setCommentId(String commentId) {
            this.commentId = commentId;
            return this;
        }
        public String getCommentId() {
            return this.commentId;
        }

        public GetCommentListResponseBodyData setCommentTime(Float commentTime) {
            this.commentTime = commentTime;
            return this;
        }
        public Float getCommentTime() {
            return this.commentTime;
        }

        public GetCommentListResponseBodyData setCommentUserName(String commentUserName) {
            this.commentUserName = commentUserName;
            return this;
        }
        public String getCommentUserName() {
            return this.commentUserName;
        }

        public GetCommentListResponseBodyData setContent(String content) {
            this.content = content;
            return this;
        }
        public String getContent() {
            return this.content;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy