/** * 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 { CommentReactionNotificationActionData } from './CommentReactionNotificationActionData'; /** * * @export * @interface CommentReactionNotificationAction */ export interface CommentReactionNotificationAction { /** * * @type {string} * @memberof CommentReactionNotificationAction */ specifier: string; /** * * @type {string} * @memberof CommentReactionNotificationAction */ type: string; /** * * @type {number} * @memberof CommentReactionNotificationAction */ timestamp: number; /** * * @type {CommentReactionNotificationActionData} * @memberof CommentReactionNotificationAction */ data: CommentReactionNotificationActionData; } /** * Check if a given object implements the CommentReactionNotificationAction interface. */ export declare function instanceOfCommentReactionNotificationAction(value: object): value is CommentReactionNotificationAction; export declare function CommentReactionNotificationActionFromJSON(json: any): CommentReactionNotificationAction; export declare function CommentReactionNotificationActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommentReactionNotificationAction; export declare function CommentReactionNotificationActionToJSON(value?: CommentReactionNotificationAction | null): any;