/** * 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 { CommentThreadNotificationActionData } from './CommentThreadNotificationActionData'; /** * * @export * @interface CommentThreadNotificationAction */ export interface CommentThreadNotificationAction { /** * * @type {string} * @memberof CommentThreadNotificationAction */ specifier: string; /** * * @type {string} * @memberof CommentThreadNotificationAction */ type: string; /** * * @type {number} * @memberof CommentThreadNotificationAction */ timestamp: number; /** * * @type {CommentThreadNotificationActionData} * @memberof CommentThreadNotificationAction */ data: CommentThreadNotificationActionData; } /** * Check if a given object implements the CommentThreadNotificationAction interface. */ export declare function instanceOfCommentThreadNotificationAction(value: object): value is CommentThreadNotificationAction; export declare function CommentThreadNotificationActionFromJSON(json: any): CommentThreadNotificationAction; export declare function CommentThreadNotificationActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommentThreadNotificationAction; export declare function CommentThreadNotificationActionToJSON(value?: CommentThreadNotificationAction | null): any;