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!
42 lines (41 loc) • 1.56 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 { Addon } from './Addon';
import type { SupportedStreamingTypes } from './SupportedStreamingTypes';
/**
* Details of a service in a country.
* @export
* @interface ServiceCountryInfo
*/
export interface ServiceCountryInfo {
/**
*
* @type {SupportedStreamingTypes}
* @memberof ServiceCountryInfo
*/
supportedStreamingTypes: SupportedStreamingTypes;
/**
* Map of id to details of the addons supported by the service in this country.
* @type {{ [key: string]: Addon; }}
* @memberof ServiceCountryInfo
*/
addons: {
[key: string]: Addon;
};
}
/**
* Check if a given object implements the ServiceCountryInfo interface.
*/
export declare function instanceOfServiceCountryInfo(value: object): boolean;
export declare function ServiceCountryInfoFromJSON(json: any): ServiceCountryInfo;
export declare function ServiceCountryInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): ServiceCountryInfo;
export declare function ServiceCountryInfoToJSON(value?: ServiceCountryInfo | null): any;