Documentation
    Preparing search index...

    Interface RealmSearchResponseItem

    The response for a realm search.

    interface RealmSearchResponseItem {
        data: {
            category: Record<Locales, string | undefined>;
            id: number;
            is_tournament: boolean;
            locale:
                | "deDE"
                | "enGB"
                | "enUS"
                | "esES"
                | "esMX"
                | "frFR"
                | "itIT"
                | "koKR"
                | "ptBR"
                | "ptPT"
                | "ruRU"
                | "zhCN"
                | "zhTW";
            name: Record<Locales, string | undefined>;
            region: { id: number; name: Record<Locales, string | undefined> };
            slug: string;
            timezone: RealmTimezone;
            type: {
                name: Record<Locales, string | undefined>;
                type: RealmTypeCapitalized;
            };
        };
        key: Href;
    }

    Hierarchy

    • KeyBase
      • RealmSearchResponseItem
    Index

    Properties

    Properties

    data: {
        category: Record<Locales, string | undefined>;
        id: number;
        is_tournament: boolean;
        locale:
            | "deDE"
            | "enGB"
            | "enUS"
            | "esES"
            | "esMX"
            | "frFR"
            | "itIT"
            | "koKR"
            | "ptBR"
            | "ptPT"
            | "ruRU"
            | "zhCN"
            | "zhTW";
        name: Record<Locales, string | undefined>;
        region: { id: number; name: Record<Locales, string | undefined> };
        slug: string;
        timezone: RealmTimezone;
        type: {
            name: Record<Locales, string | undefined>;
            type: RealmTypeCapitalized;
        };
    }
    key: Href