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!

44 lines (43 loc) 1.41 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. */ /** * Image set of a service or an addon. * @export * @interface ImageSet */ export interface ImageSet { /** * Link to the logo suitable for light themed background. * @type {string} * @memberof ImageSet */ lightThemeImage: string; /** * Link to the logo suitable for dark themed background. * @type {string} * @memberof ImageSet */ darkThemeImage: string; /** * Link to the logo that is all white. * @type {string} * @memberof ImageSet */ whiteImage: string; } /** * Check if a given object implements the ImageSet interface. */ export declare function instanceOfImageSet(value: object): boolean; export declare function ImageSetFromJSON(json: any): ImageSet; export declare function ImageSetFromJSONTyped(json: any, ignoreDiscriminator: boolean): ImageSet; export declare function ImageSetToJSON(value?: ImageSet | null): any;