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