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!
32 lines (31 loc) • 1.18 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.
*/
/**
*
* @export
* @interface NotFoundResponseSchema
*/
export interface NotFoundResponseSchema {
/**
*
* @type {string}
* @memberof NotFoundResponseSchema
*/
message: string;
}
/**
* Check if a given object implements the NotFoundResponseSchema interface.
*/
export declare function instanceOfNotFoundResponseSchema(value: object): boolean;
export declare function NotFoundResponseSchemaFromJSON(json: any): NotFoundResponseSchema;
export declare function NotFoundResponseSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotFoundResponseSchema;
export declare function NotFoundResponseSchemaToJSON(value?: NotFoundResponseSchema | null): any;