/** * Audius API * * The version of the OpenAPI document: 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 { Favorite } from './Favorite'; /** * * @export * @interface FavoritesResponse */ export interface FavoritesResponse { /** * * @type {Array} * @memberof FavoritesResponse */ data?: Array; } /** * Check if a given object implements the FavoritesResponse interface. */ export declare function instanceOfFavoritesResponse(value: object): value is FavoritesResponse; export declare function FavoritesResponseFromJSON(json: any): FavoritesResponse; export declare function FavoritesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): FavoritesResponse; export declare function FavoritesResponseToJSON(value?: FavoritesResponse | null): any;