Documentation
    Preparing search index...

    Interface PetResponse

    The response for a pet.

    interface PetResponse {
        _links: { self: Href };
        abilities?: Ability[];
        battle_pet_type: BattlePetType;
        creature: NameIdKey;
        description: string | null;
        icon: string;
        id: number;
        is_alliance_only: boolean;
        is_battlepet: boolean;
        is_capturable: boolean;
        is_horde_only: boolean;
        is_random_creature_display: boolean;
        is_tradable: boolean;
        media: Media;
        name: string;
        should_exclude_if_uncollected?: boolean;
        source?: Source;
    }

    Hierarchy (View Summary)

    Index

    Properties

    _links: { self: Href }
    abilities?: Ability[]
    battle_pet_type: BattlePetType
    creature: NameIdKey
    description: string | null
    icon: string
    id: number
    is_alliance_only: boolean
    is_battlepet: boolean
    is_capturable: boolean
    is_horde_only: boolean
    is_random_creature_display: boolean
    is_tradable: boolean
    media: Media
    name: string
    should_exclude_if_uncollected?: boolean
    source?: Source