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