MovieInfo

interface MovieInfo {
    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

MovieInfo

IsAutomated?: boolean

MovieInfo

MetadataCountryCode?: null | string

Gets or sets the metadata country code.

MovieInfo

MetadataLanguage?: null | string

Gets or sets the metadata language.

MovieInfo

Name?: null | string

Gets or sets the name.

MovieInfo

OriginalTitle?: null | string

Gets or sets the original title.

MovieInfo

ParentIndexNumber?: null | number

MovieInfo

Path?: null | string

Gets or sets the path.

MovieInfo

PremiereDate?: null | string

MovieInfo

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

Gets or sets the provider ids.

MovieInfo

Year?: null | number

Gets or sets the year.

MovieInfo