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.33 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 { Country } from './Country'; /** * * @export * @interface CountriesResponseSchema */ export interface CountriesResponseSchema { /** * Map of country code to country details. * @type {{ [key: string]: Country; }} * @memberof CountriesResponseSchema */ result: { [key: string]: Country; }; } /** * Check if a given object implements the CountriesResponseSchema interface. */ export declare function instanceOfCountriesResponseSchema(value: object): boolean; export declare function CountriesResponseSchemaFromJSON(json: any): CountriesResponseSchema; export declare function CountriesResponseSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): CountriesResponseSchema; export declare function CountriesResponseSchemaToJSON(value?: CountriesResponseSchema | null): any;