Documentation
    Preparing search index...

    Interface CreatureSearchResponseItem

    The response for a creature search.

    interface CreatureSearchResponseItem {
        data: {
            creature_displays: { id: number }[];
            family?: { id: number; name: Record<Locales, string | undefined> };
            id: number;
            is_tameable: boolean;
            name: Record<Locales, string | undefined>;
            type: { id: number; name: Record<Locales, string | undefined> };
        };
        key: Href;
    }

    Hierarchy

    • KeyBase
      • CreatureSearchResponseItem
    Index

    Properties

    Properties

    data: {
        creature_displays: { id: number }[];
        family?: { id: number; name: Record<Locales, string | undefined> };
        id: number;
        is_tameable: boolean;
        name: Record<Locales, string | undefined>;
        type: { id: number; name: Record<Locales, string | undefined> };
    }
    key: Href