/** * 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 { CreateNotificationActionData } from './CreateNotificationActionData'; /** * * @export * @interface CreateNotificationAction */ export interface CreateNotificationAction { /** * * @type {string} * @memberof CreateNotificationAction */ specifier: string; /** * * @type {string} * @memberof CreateNotificationAction */ type: string; /** * * @type {number} * @memberof CreateNotificationAction */ timestamp: number; /** * * @type {CreateNotificationActionData} * @memberof CreateNotificationAction */ data: CreateNotificationActionData; } /** * Check if a given object implements the CreateNotificationAction interface. */ export declare function instanceOfCreateNotificationAction(value: object): value is CreateNotificationAction; export declare function CreateNotificationActionFromJSON(json: any): CreateNotificationAction; export declare function CreateNotificationActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateNotificationAction; export declare function CreateNotificationActionToJSON(value?: CreateNotificationAction | null): any;