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