philia
    Preparing search index...

    Interface GroupRequest

    入群申请、邀请加群

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

    Hierarchy (View Summary)

    Index

    Properties

    group: Group

    发起事件群

    id: string

    事件ID

    raw?: any

    平台原始字段

    reason?: string

    请求理由

    scene: "group_add" | "group_invite"

    事件场景

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

    请求状态

    target?: User

    被邀请用户,若无则自己申请

    time: number

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

    type: "request"

    事件类型

    user: User

    发起事件用户