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!
26 lines (25 loc) • 1.01 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.
*/
/**
* Type of an item.
* @export
*/
export declare const ItemType: {
readonly Show: "show";
readonly Season: "season";
readonly Episode: "episode";
};
export type ItemType = typeof ItemType[keyof typeof ItemType];
export declare function instanceOfItemType(value: any): boolean;
export declare function ItemTypeFromJSON(json: any): ItemType;
export declare function ItemTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): ItemType;
export declare function ItemTypeToJSON(value?: ItemType | null): any;