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!
45 lines (44 loc) • 1.42 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.
*/
import type { Show } from './Show';
/**
*
* @export
* @interface SearchResult
*/
export interface SearchResult {
/**
* Array of shows.
* @type {Array<Show>}
* @memberof SearchResult
*/
shows: Array<Show>;
/**
* Whether there are more shows available.
* @type {boolean}
* @memberof SearchResult
*/
hasMore: boolean;
/**
* Cursor value to pass to get the next set of shows.
* @type {string}
* @memberof SearchResult
*/
nextCursor?: string;
}
/**
* Check if a given object implements the SearchResult interface.
*/
export declare function instanceOfSearchResult(value: object): boolean;
export declare function SearchResultFromJSON(json: any): SearchResult;
export declare function SearchResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): SearchResult;
export declare function SearchResultToJSON(value?: SearchResult | null): any;