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