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!
56 lines (55 loc) • 1.91 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.
*/
/**
* Details about the supported streaming types for a service-country combo.
* @export
* @interface SupportedStreamingTypes
*/
export interface SupportedStreamingTypes {
/**
* Whether there are addons/channels available.
* @type {boolean}
* @memberof SupportedStreamingTypes
*/
addon: boolean;
/**
* Whether buying shows is supported.
* @type {boolean}
* @memberof SupportedStreamingTypes
*/
buy: boolean;
/**
* Whether renting shows is supported.
* @type {boolean}
* @memberof SupportedStreamingTypes
*/
rent: boolean;
/**
* Whether there are free shows available.
* @type {boolean}
* @memberof SupportedStreamingTypes
*/
free: boolean;
/**
* Whether signing up for a subscription plan is available.
* @type {boolean}
* @memberof SupportedStreamingTypes
*/
subscription: boolean;
}
/**
* Check if a given object implements the SupportedStreamingTypes interface.
*/
export declare function instanceOfSupportedStreamingTypes(value: object): boolean;
export declare function SupportedStreamingTypesFromJSON(json: any): SupportedStreamingTypes;
export declare function SupportedStreamingTypesFromJSONTyped(json: any, ignoreDiscriminator: boolean): SupportedStreamingTypes;
export declare function SupportedStreamingTypesToJSON(value?: SupportedStreamingTypes | null): any;