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 60 countries!
53 lines (52 loc) • 1.85 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 60 countries!
*
* The version of the OpenAPI document: 4.1.0
*
*
* 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';
/**
* Countries are the primary way to get the supported streaming services and addons
* (such as list of available Apple TV and Prime Video channels) in a region.
*
* Each country object contains the country code, name and the list of supported streaming services.
*
* Details of the streaming services include localized
* logos, homepages, theme colors, and available streaming options and addons.
*
* @export
* @interface Country
*/
export interface Country {
/**
* [ISO 3166-1 alpha-2 code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) of the country.
*
* @type {string}
* @memberof Country
*/
countryCode: string;
/**
* Name of the country.
* @type {string}
* @memberof Country
*/
name: string;
/**
* Array of the supported services in the country, ordered by popularity.
* @type {Array<Service>}
* @memberof Country
*/
services: Array<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;