philia
    Preparing search index...

    Interface UserRequest

    加好友请求

    interface UserRequest {
        group?: Group;
        id: string;
        raw?: any;
        reason?: string;
        scene: "user_add";
        state: "pending" | "rejected" | "accepted" | "ignored";
        time: number;
        type: "request";
        user: User;
    }

    Hierarchy (View Summary)

    Index

    Properties

    group?: Group

    发起事件群

    id: string

    事件ID

    raw?: any

    平台原始字段

    reason?: string

    请求理由

    scene: "user_add"

    事件场景

    state: "pending" | "rejected" | "accepted" | "ignored"

    请求状态

    time: number

    事件时间,Unix时间戳(秒)

    type: "request"

    事件类型

    user: User

    发起事件用户