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