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!
34 lines (33 loc) • 1.24 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 GenresResponseSchema
*/
export interface GenresResponseSchema {
/**
* Map of genre id to genre name.
* @type {{ [key: string]: string; }}
* @memberof GenresResponseSchema
*/
result: {
[key: string]: string;
};
}
/**
* Check if a given object implements the GenresResponseSchema interface.
*/
export declare function instanceOfGenresResponseSchema(value: object): boolean;
export declare function GenresResponseSchemaFromJSON(json: any): GenresResponseSchema;
export declare function GenresResponseSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): GenresResponseSchema;
export declare function GenresResponseSchemaToJSON(value?: GenresResponseSchema | null): any;