Documentation
    Preparing search index...

    The response for a realm.

    interface RealmResponse {
        _links: { self: Href };
        category: RealmCategory;
        connected_realm: { href: string };
        id: number;
        is_tournament: boolean;
        locale:
            | "deDE"
            | "enGB"
            | "enUS"
            | "esES"
            | "esMX"
            | "frFR"
            | "itIT"
            | "koKR"
            | "ptBR"
            | "ptPT"
            | "ruRU"
            | "zhCN"
            | "zhTW";
        name: string;
        region: NameIdKey;
        slug: string;
        timezone: RealmTimezone;
        type: { name: RealmType; type: RealmTypeCapitalized };
    }

    Hierarchy

    • NameId
    • ResponseBase
      • RealmResponse
    Index

    Properties

    _links: { self: Href }
    category: RealmCategory
    connected_realm: { href: string }
    id: number
    is_tournament: boolean
    locale:
        | "deDE"
        | "enGB"
        | "enUS"
        | "esES"
        | "esMX"
        | "frFR"
        | "itIT"
        | "koKR"
        | "ptBR"
        | "ptPT"
        | "ruRU"
        | "zhCN"
        | "zhTW"
    name: string
    region: NameIdKey
    slug: string
    timezone: RealmTimezone
    type: { name: RealmType; type: RealmTypeCapitalized }