/** * 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 { RepostOfRepostNotificationActionData } from './RepostOfRepostNotificationActionData'; /** * * @export * @interface RepostOfRepostNotificationAction */ export interface RepostOfRepostNotificationAction { /** * * @type {string} * @memberof RepostOfRepostNotificationAction */ specifier: string; /** * * @type {string} * @memberof RepostOfRepostNotificationAction */ type: string; /** * * @type {number} * @memberof RepostOfRepostNotificationAction */ timestamp: number; /** * * @type {RepostOfRepostNotificationActionData} * @memberof RepostOfRepostNotificationAction */ data: RepostOfRepostNotificationActionData; } /** * Check if a given object implements the RepostOfRepostNotificationAction interface. */ export declare function instanceOfRepostOfRepostNotificationAction(value: object): value is RepostOfRepostNotificationAction; export declare function RepostOfRepostNotificationActionFromJSON(json: any): RepostOfRepostNotificationAction; export declare function RepostOfRepostNotificationActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): RepostOfRepostNotificationAction; export declare function RepostOfRepostNotificationActionToJSON(value?: RepostOfRepostNotificationAction | null): any;