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