Interface LeaderboardPlayerCharacter

The character of a player on the leaderboard

interface LeaderboardPlayerCharacter {
    baseType: ClassBaseType;
    fetchAbilityTree: ((options) => Promise<null | PlayerCharacterAbilityTree>);
    nickname: null | string;
    type: ClassType;
    uuid: string;
}

Properties

baseType: ClassBaseType

The type of class excluding reskins

fetchAbilityTree: ((options) => Promise<null | PlayerCharacterAbilityTree>)

Type declaration

nickname: null | string

The nickname of the character, if applicable

type: ClassType

The type of class including reskins

uuid: string

The UUID of the character

Generated using TypeDoc