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 59 countries!

33 lines (32 loc) 1.3 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 59 countries! * * The version of the OpenAPI document: 3.3.1 * * * 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 { Show } from './Show'; /** * * @export * @interface SearchTitleResponseSchema */ export interface SearchTitleResponseSchema { /** * Array of the shows matched with the title. * @type {Array<Show>} * @memberof SearchTitleResponseSchema */ result: Array<Show>; } /** * Check if a given object implements the SearchTitleResponseSchema interface. */ export declare function instanceOfSearchTitleResponseSchema(value: object): boolean; export declare function SearchTitleResponseSchemaFromJSON(json: any): SearchTitleResponseSchema; export declare function SearchTitleResponseSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): SearchTitleResponseSchema; export declare function SearchTitleResponseSchemaToJSON(value?: SearchTitleResponseSchema | null): any;