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!

35 lines (34 loc) 1.37 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 { DeprecatedServiceInfo } from './DeprecatedServiceInfo'; /** * * @export * @interface ServicesResponseSchema */ export interface ServicesResponseSchema { /** * Map of service id to service details. * @type {{ [key: string]: DeprecatedServiceInfo; }} * @memberof ServicesResponseSchema */ result: { [key: string]: DeprecatedServiceInfo; }; } /** * Check if a given object implements the ServicesResponseSchema interface. */ export declare function instanceOfServicesResponseSchema(value: object): boolean; export declare function ServicesResponseSchemaFromJSON(json: any): ServicesResponseSchema; export declare function ServicesResponseSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ServicesResponseSchema; export declare function ServicesResponseSchemaToJSON(value?: ServicesResponseSchema | null): any;