interface Entry {
    allBorrowLinks?: FulfillmentLink[];
    authors?: string[];
    availability?: { since?: string; status: BookAvailability; until?: string };
    borrowUrl?: string;
    categories?: string[];
    contributors?: string[];
    copies?: { available: number; total: number };
    fulfillmentLinks?: FulfillmentLink[];
    holds?: { position?: number; total: number };
    id: string;
    imageUrl?: string;
    language?: string;
    medium?: string;
    openAccessLinks?: MediaLink[];
    published?: string;
    publisher?: string;
    raw?: any;
    series?: { name: string; position?: number };
    subtitle?: string;
    summary?: string;
    title: string;
    url?: string;
}

Hierarchy

  • BookData
    • Entry

Properties

allBorrowLinks?: FulfillmentLink[]
authors?: string[]
availability?: { since?: string; status: BookAvailability; until?: string }
borrowUrl?: string
categories?: string[]
contributors?: string[]
copies?: { available: number; total: number }
fulfillmentLinks?: FulfillmentLink[]
holds?: { position?: number; total: number }
id: string
imageUrl?: string
language?: string
medium?: string
openAccessLinks?: MediaLink[]
published?: string
publisher?: string
raw?: any
series?: { name: string; position?: number }
subtitle?: string
summary?: string
title: string
url?: string