Type alias ReqLiveMsg

ReqLiveMsg: {
    command: Command;
    data: {
        to_user_ids?: string[];
        [key: string]: any;
    };
    front_request_id: string;
}

向服务端请求数据时的数据格式。

Type declaration

  • command: Command

    请求指令。

  • data: {
        to_user_ids?: string[];
        [key: string]: any;
    }

    数据内容

    • [key: string]: any
    • Optional to_user_ids?: string[]

      如果此数据仅发送给某些用户,请提供这些用户的ucid。

  • front_request_id: string

    前端请求时生成的uuid()。