/** * 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 { RequestManagerNotificationActionData } from './RequestManagerNotificationActionData'; /** * * @export * @interface RequestManagerNotificationAction */ export interface RequestManagerNotificationAction { /** * * @type {string} * @memberof RequestManagerNotificationAction */ specifier: string; /** * * @type {string} * @memberof RequestManagerNotificationAction */ type: string; /** * * @type {number} * @memberof RequestManagerNotificationAction */ timestamp: number; /** * * @type {RequestManagerNotificationActionData} * @memberof RequestManagerNotificationAction */ data: RequestManagerNotificationActionData; } /** * Check if a given object implements the RequestManagerNotificationAction interface. */ export declare function instanceOfRequestManagerNotificationAction(value: object): value is RequestManagerNotificationAction; export declare function RequestManagerNotificationActionFromJSON(json: any): RequestManagerNotificationAction; export declare function RequestManagerNotificationActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): RequestManagerNotificationAction; export declare function RequestManagerNotificationActionToJSON(value?: RequestManagerNotificationAction | null): any;