Documentation
    Preparing search index...

    Interface AchievementCategoryResponse

    Interface for a response from the achievement category endpoint.

    interface AchievementCategoryResponse {
        _links: { self: Href };
        achievements: NameIdKey[];
        aggregates_by_faction: {
            alliance: { points: number; quantity: number };
            horde: { points: number; quantity: number };
        };
        display_order: number;
        id: number;
        isGuildCategory: boolean;
        name: string;
        parent_category: NameIdKey;
    }

    Hierarchy

    • NameId
    • ResponseBase
      • AchievementCategoryResponse
    Index

    Properties

    _links: { self: Href }
    achievements: NameIdKey[]
    aggregates_by_faction: {
        alliance: { points: number; quantity: number };
        horde: { points: number; quantity: number };
    }
    display_order: number
    id: number
    isGuildCategory: boolean
    name: string
    parent_category: NameIdKey