Interface APIConnectedRealmSearchItem

interface APIConnectedRealmSearchItem {
    data: {
        has_queue: boolean;
        id: number;
        population: { name: regionedNameStruct; type: string };
        realms: {
            category: regionedNameStruct;
            id: number;
            is_tournament: boolean;
            locale: string;
            name: regionedNameStruct;
            region: { id: number; name: regionedNameStruct };
            slug: string;
            timezone: string;
            type: { name: regionedNameStruct; type: string };
        }[];
        status: { name: regionedNameStruct; type: string };
    };
    key: hrefStruct;
}

Hierarchy (View Summary)

Properties

Properties

data: {
    has_queue: boolean;
    id: number;
    population: { name: regionedNameStruct; type: string };
    realms: {
        category: regionedNameStruct;
        id: number;
        is_tournament: boolean;
        locale: string;
        name: regionedNameStruct;
        region: { id: number; name: regionedNameStruct };
        slug: string;
        timezone: string;
        type: { name: regionedNameStruct; type: string };
    }[];
    status: { name: regionedNameStruct; type: string };
}