/** * 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 { CommentMentionNotificationActionData } from './CommentMentionNotificationActionData'; /** * * @export * @interface CommentMentionNotificationAction */ export interface CommentMentionNotificationAction { /** * * @type {string} * @memberof CommentMentionNotificationAction */ specifier: string; /** * * @type {string} * @memberof CommentMentionNotificationAction */ type: string; /** * * @type {number} * @memberof CommentMentionNotificationAction */ timestamp: number; /** * * @type {CommentMentionNotificationActionData} * @memberof CommentMentionNotificationAction */ data: CommentMentionNotificationActionData; } /** * Check if a given object implements the CommentMentionNotificationAction interface. */ export declare function instanceOfCommentMentionNotificationAction(value: object): value is CommentMentionNotificationAction; export declare function CommentMentionNotificationActionFromJSON(json: any): CommentMentionNotificationAction; export declare function CommentMentionNotificationActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommentMentionNotificationAction; export declare function CommentMentionNotificationActionToJSON(value?: CommentMentionNotificationAction | null): any;