RBWCM-SDK Documentation - v1.1.0
    Preparing search index...

    Interface Ban

    Raw data structure representing a ban in the system.

    interface Ban {
        active: boolean;
        bannedAt: Date;
        expiresAt: Date | null;
        id: number;
        reason: string | null;
        staffer: string | null;
        unbannedAt: Date | null;
        unbannedBy: string | null;
        unbanReason: string | null;
        userId: number;
    }
    Index

    Properties

    active: boolean
    bannedAt: Date
    expiresAt: Date | null
    id: number
    reason: string | null
    staffer: string | null
    unbannedAt: Date | null
    unbannedBy: string | null
    unbanReason: string | null
    userId: number