SeriesInfo

interface SeriesInfo {
    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;
    };
    Year?: null | number;
}

Properties

IndexNumber?: null | number

SeriesInfo

IsAutomated?: boolean

SeriesInfo

MetadataCountryCode?: null | string

Gets or sets the metadata country code.

SeriesInfo

MetadataLanguage?: null | string

Gets or sets the metadata language.

SeriesInfo

Name?: null | string

Gets or sets the name.

SeriesInfo

OriginalTitle?: null | string

Gets or sets the original title.

SeriesInfo

ParentIndexNumber?: null | number

SeriesInfo

Path?: null | string

Gets or sets the path.

SeriesInfo

PremiereDate?: null | string

SeriesInfo

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

Gets or sets the provider ids.

SeriesInfo

Year?: null | number

Gets or sets the year.

SeriesInfo