Documentation
    Preparing search index...

    Base record interface containing name and id properties that often appear together in Blizzard API responses.

    interface AuctionsResponse {
        _links: { self: Href };
        auctions: Auction[];
        connected_realm: Href;
        id: number;
        name: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    _links: { self: Href }
    auctions: Auction[]
    connected_realm: Href
    id: number
    name: string