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!
28 lines (27 loc) • 1.21 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 the streaming option.
* @export
*/
export declare const StreamingOptionType: {
readonly Free: "free";
readonly Subscription: "subscription";
readonly Buy: "buy";
readonly Rent: "rent";
readonly Addon: "addon";
};
export type StreamingOptionType = typeof StreamingOptionType[keyof typeof StreamingOptionType];
export declare function instanceOfStreamingOptionType(value: any): boolean;
export declare function StreamingOptionTypeFromJSON(json: any): StreamingOptionType;
export declare function StreamingOptionTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): StreamingOptionType;
export declare function StreamingOptionTypeToJSON(value?: StreamingOptionType | null): any;