A book in which a template lives.

interface PearsonBook {
    author: string;
    bookId: string;
    language: string;
    pasteLimit?: PasteLimit;
    tenantId: string;
    year: number;
}

Properties

author: string

The name of the author of the book.

bookId: string

The id of this book.

language: string

The language the book teaches.

pasteLimit?: PasteLimit

This book's own paste limit. Absent when the book sets none.

tenantId: string

The id of the tenant that owns this book.

year: number

The year the book was released.