/** * 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. */ /** * Reference to a playlist * @export * @interface PlaylistLibraryPlaylistIdentifier */ export interface PlaylistLibraryPlaylistIdentifier { /** * * @type {string} * @memberof PlaylistLibraryPlaylistIdentifier */ type: PlaylistLibraryPlaylistIdentifierTypeEnum; /** * Playlist ID * @type {number} * @memberof PlaylistLibraryPlaylistIdentifier */ playlistId: number; } /** * @export */ export declare const PlaylistLibraryPlaylistIdentifierTypeEnum: { readonly Playlist: "playlist"; }; export type PlaylistLibraryPlaylistIdentifierTypeEnum = typeof PlaylistLibraryPlaylistIdentifierTypeEnum[keyof typeof PlaylistLibraryPlaylistIdentifierTypeEnum]; /** * Check if a given object implements the PlaylistLibraryPlaylistIdentifier interface. */ export declare function instanceOfPlaylistLibraryPlaylistIdentifier(value: object): value is PlaylistLibraryPlaylistIdentifier; export declare function PlaylistLibraryPlaylistIdentifierFromJSON(json: any): PlaylistLibraryPlaylistIdentifier; export declare function PlaylistLibraryPlaylistIdentifierFromJSONTyped(json: any, ignoreDiscriminator: boolean): PlaylistLibraryPlaylistIdentifier; export declare function PlaylistLibraryPlaylistIdentifierToJSON(value?: PlaylistLibraryPlaylistIdentifier | null): any;