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!
56 lines (55 loc) • 1.74 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.
*/
/**
* Horizontal image of a show.
* @export
* @interface HorizontalImage
*/
export interface HorizontalImage {
/**
* Link to the 360px wide version of the image.
* @type {string}
* @memberof HorizontalImage
*/
w360: string;
/**
* Link to the 480px wide version of the image.
* @type {string}
* @memberof HorizontalImage
*/
w480: string;
/**
* Link to the 720px wide version of the image.
* @type {string}
* @memberof HorizontalImage
*/
w720: string;
/**
* Link to the 1080px wide version of the image.
* @type {string}
* @memberof HorizontalImage
*/
w1080: string;
/**
* Link to the 1440px wide version of the image.
* @type {string}
* @memberof HorizontalImage
*/
w1440: string;
}
/**
* Check if a given object implements the HorizontalImage interface.
*/
export declare function instanceOfHorizontalImage(value: object): boolean;
export declare function HorizontalImageFromJSON(json: any): HorizontalImage;
export declare function HorizontalImageFromJSONTyped(json: any, ignoreDiscriminator: boolean): HorizontalImage;
export declare function HorizontalImageToJSON(value?: HorizontalImage | null): any;