/** * 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 { TrendingUndergroundNotificationActionData } from './TrendingUndergroundNotificationActionData'; /** * * @export * @interface TrendingUndergroundNotificationAction */ export interface TrendingUndergroundNotificationAction { /** * * @type {string} * @memberof TrendingUndergroundNotificationAction */ specifier: string; /** * * @type {string} * @memberof TrendingUndergroundNotificationAction */ type: string; /** * * @type {number} * @memberof TrendingUndergroundNotificationAction */ timestamp: number; /** * * @type {TrendingUndergroundNotificationActionData} * @memberof TrendingUndergroundNotificationAction */ data: TrendingUndergroundNotificationActionData; } /** * Check if a given object implements the TrendingUndergroundNotificationAction interface. */ export declare function instanceOfTrendingUndergroundNotificationAction(value: object): value is TrendingUndergroundNotificationAction; export declare function TrendingUndergroundNotificationActionFromJSON(json: any): TrendingUndergroundNotificationAction; export declare function TrendingUndergroundNotificationActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): TrendingUndergroundNotificationAction; export declare function TrendingUndergroundNotificationActionToJSON(value?: TrendingUndergroundNotificationAction | null): any;