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

    Interface User

    Raw user data structure as returned by the backend API.

    interface User {
        discordId: string;
        id: number;
        ign: string;
        partyId: string | null;
        registeredAt: Date;
        updatedAt: Date;
    }
    Index

    Properties

    discordId: string

    The unique Discord snowflake ID associated with the user.

    id: number

    The unique internal database identifier.

    ign: string

    The user's current In-Game Name (IGN).

    partyId: string | null

    The ID of the party the user is currently in, or null if solo.

    registeredAt: Date

    Timestamp of when the user first registered in the ranked system.

    updatedAt: Date

    Timestamp of the last time the user's profile was updated.