UNPKG

streaming-availability

Version:

Streaming Availability API allows getting streaming availability information of movies and series; and querying the list of available shows on streaming services such as Netflix, Disney+, Apple TV, Max and Hulu across 60 countries!

39 lines (38 loc) 1.22 kB
/** * Streaming Availability API * Streaming Availability API allows getting streaming availability information of movies and series; and querying the list of available shows on streaming services such as Netflix, Disney+, Apple TV, Max and Hulu across 60 countries! * * The version of the OpenAPI document: 4.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { Locale } from './Locale'; /** * * @export * @interface Subtitle */ export interface Subtitle { /** * Whether closed captions are available for the subtitle. * @type {boolean} * @memberof Subtitle */ closedCaptions: boolean; /** * * @type {Locale} * @memberof Subtitle */ locale: Locale; } /** * Check if a given object implements the Subtitle interface. */ export declare function instanceOfSubtitle(value: object): boolean; export declare function SubtitleFromJSON(json: any): Subtitle; export declare function SubtitleFromJSONTyped(json: any, ignoreDiscriminator: boolean): Subtitle; export declare function SubtitleToJSON(value?: Subtitle | null): any;