A source that returns a list of top shows in the given streaming service.

Supported streaming services are Netflix (netflix), Amazon Prime Video (prime), Disney+ (disney), Apple TV+ (apple), and Max (hbo)

interface TopShowsSource {
    country: string;
    outputLanguage?: GetTopShowsOutputLanguageEnum;
    service: string;
    showType?: ShowType;
    type: string;
}

Hierarchy (view full)

Properties

country: string
outputLanguage?: GetTopShowsOutputLanguageEnum
service: string
showType?: ShowType
type: string