Tsarr Documentation - v1.8.0
    Preparing search index...

    Type Alias Book

    type Book = {
        id?: number;
        authorMetadataId?: number;
        foreignBookId?: string | null;
        foreignEditionId?: string | null;
        titleSlug?: string | null;
        title?: string | null;
        releaseDate?: string | null;
        links?: Readarr.Links[] | null;
        genres?: string[] | null;
        relatedBooks?: number[] | null;
        ratings?: Readarr.Ratings;
        lastSearchTime?: string | null;
        cleanTitle?: string | null;
        monitored?: boolean;
        anyEditionOk?: boolean;
        lastInfoSync?: string | null;
        added?: string;
        addOptions?: AddBookOptions;
        authorMetadata?: AuthorMetadataLazyLoaded;
        author?: AuthorLazyLoaded;
        editions?: EditionListLazyLoaded;
        bookFiles?: BookFileListLazyLoaded;
        seriesLinks?: SeriesBookLinkListLazyLoaded;
    }
    Index

    Properties

    id?: number
    authorMetadataId?: number
    foreignBookId?: string | null
    foreignEditionId?: string | null
    titleSlug?: string | null
    title?: string | null
    releaseDate?: string | null
    links?: Readarr.Links[] | null
    genres?: string[] | null
    relatedBooks?: number[] | null
    ratings?: Readarr.Ratings
    lastSearchTime?: string | null
    cleanTitle?: string | null
    monitored?: boolean
    anyEditionOk?: boolean
    lastInfoSync?: string | null
    added?: string
    addOptions?: AddBookOptions
    authorMetadata?: AuthorMetadataLazyLoaded