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