/** * 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 { TrendingNotificationActionData } from './TrendingNotificationActionData'; /** * * @export * @interface TrendingNotificationAction */ export interface TrendingNotificationAction { /** * * @type {string} * @memberof TrendingNotificationAction */ specifier: string; /** * * @type {string} * @memberof TrendingNotificationAction */ type: string; /** * * @type {number} * @memberof TrendingNotificationAction */ timestamp: number; /** * * @type {TrendingNotificationActionData} * @memberof TrendingNotificationAction */ data: TrendingNotificationActionData; } /** * Check if a given object implements the TrendingNotificationAction interface. */ export declare function instanceOfTrendingNotificationAction(value: object): value is TrendingNotificationAction; export declare function TrendingNotificationActionFromJSON(json: any): TrendingNotificationAction; export declare function TrendingNotificationActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): TrendingNotificationAction; export declare function TrendingNotificationActionToJSON(value?: TrendingNotificationAction | null): any;