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!
40 lines (39 loc) • 1.32 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.
*/
import type { Change } from './Change';
import type { Show } from './Show';
/**
*
* @export
* @interface UpcomingChangeSet
*/
export interface UpcomingChangeSet {
/**
*
* @type {Array<Change>}
* @memberof UpcomingChangeSet
*/
upcomingChanges: Array<Change>;
/**
*
* @type {Show}
* @memberof UpcomingChangeSet
*/
show: Show;
}
/**
* Check if a given object implements the UpcomingChangeSet interface.
*/
export declare function instanceOfUpcomingChangeSet(value: object): boolean;
export declare function UpcomingChangeSetFromJSON(json: any): UpcomingChangeSet;
export declare function UpcomingChangeSetFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpcomingChangeSet;
export declare function UpcomingChangeSetToJSON(value?: UpcomingChangeSet | null): any;