NEMeetingKit V4.8.0
载入中...
搜索中...
未找到
kit_define_feedback.h
浏览该文件的文档.
1// Copyright (c) 2022 NetEase, Inc. All rights reserved.
2// Use of this source code is governed by a MIT license that can be
3// found in the LICENSE file.
4
13#ifndef NEM_SDK_INTERFACE_DEFINE_FEEDBACK_H_
14#define NEM_SDK_INTERFACE_DEFINE_FEEDBACK_H_
15
16#include <list>
17#include <string>
18#include <vector>
19#include "kit_define_public.h"
20
22
26struct NEFeedback {
27 std::string category;
28 std::string description;
29 int64_t time;
30 std::vector<std::string> imageList;
32};
33
35
36#endif // NEM_SDK_INTERFACE_DEFINE_FEEDBACK_H_
#define NNEM_SDK_INTERFACE_BEGIN_DECLS
定义 build_config.h:16
#define NNEM_SDK_INTERFACE_END_DECLS
定义 build_config.h:17
公共对象定义头文件
结构体 NEContact 用于表示联系人信息
定义 kit_define_feedback.h:26
std::vector< std::string > imageList
问题发生时间,单位s
定义 kit_define_feedback.h:30
bool needAudioDump
图片地址列表
定义 kit_define_feedback.h:31
std::string category
定义 kit_define_feedback.h:27
int64_t time
问题描述
定义 kit_define_feedback.h:29
std::string description
用户选择问题分类
定义 kit_define_feedback.h:28