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