/** * 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 { CommentNotificationActionData } from './CommentNotificationActionData'; /** * * @export * @interface CommentNotificationAction */ export interface CommentNotificationAction { /** * * @type {string} * @memberof CommentNotificationAction */ specifier: string; /** * * @type {string} * @memberof CommentNotificationAction */ type: string; /** * * @type {number} * @memberof CommentNotificationAction */ timestamp: number; /** * * @type {CommentNotificationActionData} * @memberof CommentNotificationAction */ data: CommentNotificationActionData; } /** * Check if a given object implements the CommentNotificationAction interface. */ export declare function instanceOfCommentNotificationAction(value: object): value is CommentNotificationAction; export declare function CommentNotificationActionFromJSON(json: any): CommentNotificationAction; export declare function CommentNotificationActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommentNotificationAction; export declare function CommentNotificationActionToJSON(value?: CommentNotificationAction | null): any;