BookInfo

interface BookInfo {
    IndexNumber?: null | number;
    IsAutomated?: boolean;
    MetadataCountryCode?: null | string;
    MetadataLanguage?: null | string;
    Name?: null | string;
    OriginalTitle?: null | string;
    ParentIndexNumber?: null | number;
    Path?: null | string;
    PremiereDate?: null | string;
    ProviderIds?: null | {
        [key: string]: string | null;
    };
    SeriesName?: null | string;
    Year?: null | number;
}

Properties

IndexNumber?: null | number

BookInfo

IsAutomated?: boolean

BookInfo

MetadataCountryCode?: null | string

Gets or sets the metadata country code.

BookInfo

MetadataLanguage?: null | string

Gets or sets the metadata language.

BookInfo

Name?: null | string

Gets or sets the name.

BookInfo

OriginalTitle?: null | string

Gets or sets the original title.

BookInfo

ParentIndexNumber?: null | number

BookInfo

Path?: null | string

Gets or sets the path.

BookInfo

PremiereDate?: null | string

BookInfo

ProviderIds?: null | {
    [key: string]: string | null;
}

Gets or sets the provider ids.

BookInfo

SeriesName?: null | string

BookInfo

Year?: null | number

Gets or sets the year.

BookInfo