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!
47 lines (46 loc) • 1.43 kB
TypeScript
/**
* 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 { Service } from './Service';
/**
* Details of a country.
* @export
* @interface Country
*/
export interface Country {
/**
* 2-letter ISO code of the country.
* @type {string}
* @memberof Country
*/
countryCode: string;
/**
* Name of the country.
* @type {string}
* @memberof Country
*/
name: string;
/**
* Map of service id to details of the service in this country.
* @type {{ [key: string]: Service; }}
* @memberof Country
*/
services: {
[key: string]: Service;
};
}
/**
* Check if a given object implements the Country interface.
*/
export declare function instanceOfCountry(value: object): boolean;
export declare function CountryFromJSON(json: any): Country;
export declare function CountryFromJSONTyped(json: any, ignoreDiscriminator: boolean): Country;
export declare function CountryToJSON(value?: Country | null): any;