/* tslint:disable */ /* eslint-disable */ /** * The Association for Cube Commons * The CubeCommons API caters to each and every whim of the Frontend, i.e. it receives, bundles, packages and formats data exactly as the Frontend needs it. * * The version of the OpenAPI document: 0.9.95 * Contact: tech@cubecommons.ca * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ // May contain unused imports in some cases // @ts-ignore import { PlaylistStorage } from './playlist-storage'; // May contain unused imports in some cases // @ts-ignore import { SearchResponseContentResultsMeta } from './search-response-content-results-meta'; /** * * @export * @interface SearchResponsePlaylistResults */ export interface SearchResponsePlaylistResults { /** * * @type {SearchResponseContentResultsMeta} * @memberof SearchResponsePlaylistResults */ 'meta': SearchResponseContentResultsMeta; /** * * @type {Array} * @memberof SearchResponsePlaylistResults */ 'data': Array; /** * HTTP status code * @type {number} * @memberof SearchResponsePlaylistResults */ 'status': number; /** * Error message, if any * @type {string} * @memberof SearchResponsePlaylistResults */ 'error': string; }