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

    Interface Rank

    Raw data structure for a Rank within a Ranked System.

    interface Rank {
        color: string;
        iconUrl: string | null;
        id: string;
        lose: number;
        mvp: number;
        name: string;
        rankedSystemId: string;
        start: number;
        win: number;
    }
    Index

    Properties

    color: string

    The HEX color code associated with this rank.

    iconUrl: string | null

    URL to the rank's icon image, if uploaded.

    id: string

    The unique internal database id for the rank.

    lose: number

    ELO lost upon losing a match.

    mvp: number

    Additional ELO gained for being the MVP of a match.

    name: string

    The display name of the rank (e.g., 'Bronze', 'Diamond').

    rankedSystemId: string

    The id of the ranked system this rank belongs to.

    start: number

    The minimum ELO required to achieve this rank.

    win: number

    ELO gained upon winning a match.