A source that returns a list of shows by searching for their title.

interface TitleSearchSource {
    country: string;
    limit?: number;
    outputLanguage?: SearchShowsByTitleOutputLanguageEnum;
    seriesGranularity?: SearchShowsByTitleSeriesGranularityEnum;
    showType?: ShowType;
    title: string;
    type: string;
}

Hierarchy (view full)

Properties

country: string
limit?: number

The maximum number of shows to fetch.

outputLanguage?: SearchShowsByTitleOutputLanguageEnum
seriesGranularity?: SearchShowsByTitleSeriesGranularityEnum
showType?: ShowType
title: string
type: string