/** * 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 { RepostNotificationActionData } from './RepostNotificationActionData'; /** * * @export * @interface RepostNotificationAction */ export interface RepostNotificationAction { /** * * @type {string} * @memberof RepostNotificationAction */ specifier: string; /** * * @type {string} * @memberof RepostNotificationAction */ type: string; /** * * @type {number} * @memberof RepostNotificationAction */ timestamp: number; /** * * @type {RepostNotificationActionData} * @memberof RepostNotificationAction */ data: RepostNotificationActionData; } /** * Check if a given object implements the RepostNotificationAction interface. */ export declare function instanceOfRepostNotificationAction(value: object): value is RepostNotificationAction; export declare function RepostNotificationActionFromJSON(json: any): RepostNotificationAction; export declare function RepostNotificationActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): RepostNotificationAction; export declare function RepostNotificationActionToJSON(value?: RepostNotificationAction | null): any;