IMP(低代码音视频工厂)SDK v1.5.0
IMP SDK API Reference Manual for Windows Platforms
list_comment_rsp.h
1// Copyright (c) 2019 The Alibaba DingTalk Authors. All rights reserved.
2
3#pragma once
4
5#include "comment_model.h"
6#include <cstdint>
7#include <utility>
8#include <vector>
9
10namespace alibaba { namespace chat {
11
15struct ListCommentRsp final {
16
20 int32_t total = 0;
24 bool has_more = false;
28 std::vector<CommentModel> comment_model_list;
29
30 ListCommentRsp(int32_t total_,
31 bool has_more_,
32 std::vector<CommentModel> comment_model_list_)
33 : total(std::move(total_))
34 , has_more(std::move(has_more_))
35 , comment_model_list(std::move(comment_model_list_))
36 {}
37
39};
40
41} } // namespace alibaba::chat
查询弹幕响应
Definition: list_comment_rsp.h:15
int32_t total
Definition: list_comment_rsp.h:20
bool has_more
Definition: list_comment_rsp.h:24
std::vector< CommentModel > comment_model_list
Definition: list_comment_rsp.h:28