/** * 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 { PlaylistLibraryExplorePlaylistIdentifier } from './PlaylistLibraryExplorePlaylistIdentifier'; import { PlaylistLibraryFolder } from './PlaylistLibraryFolder'; import { PlaylistLibraryPlaylistIdentifier } from './PlaylistLibraryPlaylistIdentifier'; /** * @type UserPlaylistLibraryContentsInner * * @export */ export type UserPlaylistLibraryContentsInner = PlaylistLibraryExplorePlaylistIdentifier | PlaylistLibraryFolder | PlaylistLibraryPlaylistIdentifier; export declare function UserPlaylistLibraryContentsInnerFromJSON(json: any): UserPlaylistLibraryContentsInner; export declare function UserPlaylistLibraryContentsInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserPlaylistLibraryContentsInner; export declare function UserPlaylistLibraryContentsInnerToJSON(value?: UserPlaylistLibraryContentsInner | null): any;