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