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 60 countries!

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