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