/** * 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 { TrendingNotificationAction } from './TrendingNotificationAction'; /** * * @export * @interface TrendingNotification */ export interface TrendingNotification { /** * * @type {string} * @memberof TrendingNotification */ type: string; /** * * @type {string} * @memberof TrendingNotification */ groupId: string; /** * * @type {boolean} * @memberof TrendingNotification */ isSeen: boolean; /** * * @type {number} * @memberof TrendingNotification */ seenAt?: number; /** * * @type {Array} * @memberof TrendingNotification */ actions: Array; } /** * Check if a given object implements the TrendingNotification interface. */ export declare function instanceOfTrendingNotification(value: object): value is TrendingNotification; export declare function TrendingNotificationFromJSON(json: any): TrendingNotification; export declare function TrendingNotificationFromJSONTyped(json: any, ignoreDiscriminator: boolean): TrendingNotification; export declare function TrendingNotificationToJSON(value?: TrendingNotification | null): any;