/** * 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 { UserPlaylistLibraryContentsInner } from './UserPlaylistLibraryContentsInner'; /** * User's playlist library with support for folders and playlists * @export * @interface UserPlaylistLibrary */ export interface UserPlaylistLibrary { /** * Array of folders and playlist identifiers * @type {Array} * @memberof UserPlaylistLibrary */ contents: Array; } /** * Check if a given object implements the UserPlaylistLibrary interface. */ export declare function instanceOfUserPlaylistLibrary(value: object): value is UserPlaylistLibrary; export declare function UserPlaylistLibraryFromJSON(json: any): UserPlaylistLibrary; export declare function UserPlaylistLibraryFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserPlaylistLibrary; export declare function UserPlaylistLibraryToJSON(value?: UserPlaylistLibrary | null): any;