/** * 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 { PlaylistUpdate } from './PlaylistUpdate'; /** * * @export * @interface PlaylistUpdates */ export interface PlaylistUpdates { /** * * @type {Array} * @memberof PlaylistUpdates */ playlistUpdates?: Array; } /** * Check if a given object implements the PlaylistUpdates interface. */ export declare function instanceOfPlaylistUpdates(value: object): value is PlaylistUpdates; export declare function PlaylistUpdatesFromJSON(json: any): PlaylistUpdates; export declare function PlaylistUpdatesFromJSONTyped(json: any, ignoreDiscriminator: boolean): PlaylistUpdates; export declare function PlaylistUpdatesToJSON(value?: PlaylistUpdates | null): any;