UNPKG

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!

45 lines (44 loc) 1.63 kB
/** * 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 { ChangeSet } from './ChangeSet'; /** * * @export * @interface ChangesResponseSchema */ export interface ChangesResponseSchema { /** * Array of the results matched with the query. * @type {Array<ChangeSet>} * @memberof ChangesResponseSchema */ result: Array<ChangeSet>; /** * Whether there are more results to be loaded. * @type {boolean} * @memberof ChangesResponseSchema */ hasMore: boolean; /** * Cursor value to pass to get next set of the results. An empty string if "hasMore" is "false". * @type {string} * @memberof ChangesResponseSchema */ nextCursor: string; } /** * Check if a given object implements the ChangesResponseSchema interface. */ export declare function instanceOfChangesResponseSchema(value: object): boolean; export declare function ChangesResponseSchemaFromJSON(json: any): ChangesResponseSchema; export declare function ChangesResponseSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChangesResponseSchema; export declare function ChangesResponseSchemaToJSON(value?: ChangesResponseSchema | null): any;