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