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.16 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 GetResponseSchema */ export interface GetResponseSchema { /** * * @type {Show} * @memberof GetResponseSchema */ result: Show; } /** * Check if a given object implements the GetResponseSchema interface. */ export declare function instanceOfGetResponseSchema(value: object): boolean; export declare function GetResponseSchemaFromJSON(json: any): GetResponseSchema; export declare function GetResponseSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetResponseSchema; export declare function GetResponseSchemaToJSON(value?: GetResponseSchema | null): any;