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