doum
2 天以前 2f3221b7c90d5663fdb312653a2d188bc4628370
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
39
40
41
42
43
44
45
export declare const apiName = "biz.live.getPlaybackList";
/**
 * 获取回放 请求参数定义
 * @apiName biz.live.getPlaybackList
 */
export interface IBizLiveGetPlaybackListParams {
    /** 页码 */
    page: number;
    /** 每页容量 */
    page_size: number;
    /** 筛选类型(0 我未看的, 1 我看过的, 2 全部, 3 我发起的) */
    searchType: number;
}
/**
 * 获取回放 返回结果定义
 * @apiName biz.live.getPlaybackList
 */
export interface IBizLiveGetPlaybackListResult {
    records: Array<{
        anchorId: string;
        liveUuid: string;
        title: string;
        coverUrl: string;
        playUrl: string;
        status: number;
        datetime: string;
        duration: number;
        key: string;
        hasWatched: boolean;
        liveType: number;
        isLiveAbord: number;
        conversationName: string;
        pv: number;
        praiseCount: number;
        largeCoverUrl: string;
    }>;
    ended: boolean;
}
/**
 * 获取回放
 * @apiName biz.live.getPlaybackList
 * @supportVersion ios: 4.5.16 android: 4.5.16 pc: 4.5.16
 */
export declare function getPlaybackList$(params: IBizLiveGetPlaybackListParams): Promise<IBizLiveGetPlaybackListResult>;
export default getPlaybackList$;