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!
25 lines (24 loc) • 1.02 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.
*/
/**
*
* @export
*/
export declare const OrderDirection: {
readonly Asc: "asc";
readonly Desc: "desc";
};
export type OrderDirection = typeof OrderDirection[keyof typeof OrderDirection];
export declare function instanceOfOrderDirection(value: any): boolean;
export declare function OrderDirectionFromJSON(json: any): OrderDirection;
export declare function OrderDirectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrderDirection;
export declare function OrderDirectionToJSON(value?: OrderDirection | null): any;