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 59 countries!
50 lines (49 loc) • 1.8 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 59 countries!
*
* The version of the OpenAPI document: 3.3.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* The current status of a series.
* @export
* @interface SeriesStatus
*/
export interface SeriesStatus {
/**
* Integer code of the status. 1: "Returning Series", 2: "Planned", 3: "In Production", 4: "Ended", 5: "Cancelled", 6: "Pilot",
* @type {number}
* @memberof SeriesStatus
*/
statusCode: number;
/**
* Textual representation of the status.
* @type {string}
* @memberof SeriesStatus
*/
statusText: SeriesStatusStatusTextEnum;
}
/**
* @export
*/
export declare const SeriesStatusStatusTextEnum: {
readonly ReturningSeries: "Returning Series";
readonly Planned: "Planned";
readonly InProduction: "In Production";
readonly Ended: "Ended";
readonly Cancelled: "Cancelled";
readonly Pilot: "Pilot";
};
export type SeriesStatusStatusTextEnum = typeof SeriesStatusStatusTextEnum[keyof typeof SeriesStatusStatusTextEnum];
/**
* Check if a given object implements the SeriesStatus interface.
*/
export declare function instanceOfSeriesStatus(value: object): boolean;
export declare function SeriesStatusFromJSON(json: any): SeriesStatus;
export declare function SeriesStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): SeriesStatus;
export declare function SeriesStatusToJSON(value?: SeriesStatus | null): any;