/** * 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 { TastemakerNotificationActionData } from './TastemakerNotificationActionData'; /** * * @export * @interface TastemakerNotificationAction */ export interface TastemakerNotificationAction { /** * * @type {string} * @memberof TastemakerNotificationAction */ specifier: string; /** * * @type {string} * @memberof TastemakerNotificationAction */ type: string; /** * * @type {number} * @memberof TastemakerNotificationAction */ timestamp: number; /** * * @type {TastemakerNotificationActionData} * @memberof TastemakerNotificationAction */ data: TastemakerNotificationActionData; } /** * Check if a given object implements the TastemakerNotificationAction interface. */ export declare function instanceOfTastemakerNotificationAction(value: object): value is TastemakerNotificationAction; export declare function TastemakerNotificationActionFromJSON(json: any): TastemakerNotificationAction; export declare function TastemakerNotificationActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): TastemakerNotificationAction; export declare function TastemakerNotificationActionToJSON(value?: TastemakerNotificationAction | null): any;