/** * 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. */ /** * * @export * @interface PlaylistUpdate */ export interface PlaylistUpdate { /** * * @type {string} * @memberof PlaylistUpdate */ playlistId: string; /** * * @type {number} * @memberof PlaylistUpdate */ updatedAt: number; /** * * @type {number} * @memberof PlaylistUpdate */ lastSeenAt?: number; } /** * Check if a given object implements the PlaylistUpdate interface. */ export declare function instanceOfPlaylistUpdate(value: object): value is PlaylistUpdate; export declare function PlaylistUpdateFromJSON(json: any): PlaylistUpdate; export declare function PlaylistUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): PlaylistUpdate; export declare function PlaylistUpdateToJSON(value?: PlaylistUpdate | null): any;