/** * 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 { TrendingPlaylistNotificationActionData } from './TrendingPlaylistNotificationActionData'; /** * * @export * @interface TrendingPlaylistNotificationAction */ export interface TrendingPlaylistNotificationAction { /** * * @type {string} * @memberof TrendingPlaylistNotificationAction */ specifier: string; /** * * @type {string} * @memberof TrendingPlaylistNotificationAction */ type: string; /** * * @type {number} * @memberof TrendingPlaylistNotificationAction */ timestamp: number; /** * * @type {TrendingPlaylistNotificationActionData} * @memberof TrendingPlaylistNotificationAction */ data: TrendingPlaylistNotificationActionData; } /** * Check if a given object implements the TrendingPlaylistNotificationAction interface. */ export declare function instanceOfTrendingPlaylistNotificationAction(value: object): value is TrendingPlaylistNotificationAction; export declare function TrendingPlaylistNotificationActionFromJSON(json: any): TrendingPlaylistNotificationAction; export declare function TrendingPlaylistNotificationActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): TrendingPlaylistNotificationAction; export declare function TrendingPlaylistNotificationActionToJSON(value?: TrendingPlaylistNotificationAction | null): any;