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

    Type Alias BookResource

    type BookResource = {
        id?: number;
        title?: string | null;
        authorTitle?: string | null;
        seriesTitle?: string | null;
        disambiguation?: string | null;
        overview?: string | null;
        authorId?: number;
        foreignBookId?: string | null;
        foreignEditionId?: string | null;
        titleSlug?: string | null;
        monitored?: boolean;
        anyEditionOk?: boolean;
        ratings?: Readarr.Ratings;
        releaseDate?: string | null;
        pageCount?: number;
        genres?: string[] | null;
        author?: AuthorResource;
        images?: Readarr.MediaCover[] | null;
        links?: Readarr.Links[] | null;
        statistics?: BookStatisticsResource;
        added?: string | null;
        addOptions?: AddBookOptions;
        remoteCover?: string | null;
        lastSearchTime?: string | null;
        editions?: EditionResource[] | null;
    }
    Index

    Properties

    id?: number
    title?: string | null
    authorTitle?: string | null
    seriesTitle?: string | null
    disambiguation?: string | null
    overview?: string | null
    authorId?: number
    foreignBookId?: string | null
    foreignEditionId?: string | null
    titleSlug?: string | null
    monitored?: boolean
    anyEditionOk?: boolean
    ratings?: Readarr.Ratings
    releaseDate?: string | null
    pageCount?: number
    genres?: string[] | null
    images?: Readarr.MediaCover[] | null
    links?: Readarr.Links[] | null
    added?: string | null
    addOptions?: AddBookOptions
    remoteCover?: string | null
    lastSearchTime?: string | null
    editions?: EditionResource[] | null