doum
9 天以前 60e49d600834344ae1b18357e76df74fbe160527
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
export declare const apiName = "biz.live.getLiveFuncMsgs";
/**
 * 拉群群直播功能会话消息 请求参数定义
 * @apiName biz.live.getLiveFuncMsgs
 */
export interface IBizLiveGetLiveFuncMsgsParams {
    /** 向前拉取 */
    forward: any;
    /** 拉取位置 */
    cursor: any;
    /** 消息个数 */
    size: number;
}
/**
 * 拉群群直播功能会话消息 返回结果定义
 * @apiName biz.live.getLiveFuncMsgs
 */
export declare type IBizLiveGetLiveFuncMsgsResult = Array<{
    text: string;
    extension: {
        liveEntryType: string;
        coverUrl: string;
        title: string;
        timeStamp: any;
        nick: string;
        uuid: string;
        anchorId: string;
        cid: string;
        conversationTitle: string;
    };
}>;
/**
 * 拉群群直播功能会话消息
 * @apiName biz.live.getLiveFuncMsgs
 * @supportVersion ios: 4.6.10 android: 4.6.10
 */
export declare function getLiveFuncMsgs$(params: IBizLiveGetLiveFuncMsgsParams): Promise<IBizLiveGetLiveFuncMsgsResult>;
export default getLiveFuncMsgs$;