/** * 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 { SupporterDethronedNotificationActionData } from './SupporterDethronedNotificationActionData'; /** * * @export * @interface SupporterDethronedNotificationAction */ export interface SupporterDethronedNotificationAction { /** * * @type {string} * @memberof SupporterDethronedNotificationAction */ specifier: string; /** * * @type {string} * @memberof SupporterDethronedNotificationAction */ type: string; /** * * @type {number} * @memberof SupporterDethronedNotificationAction */ timestamp: number; /** * * @type {SupporterDethronedNotificationActionData} * @memberof SupporterDethronedNotificationAction */ data: SupporterDethronedNotificationActionData; } /** * Check if a given object implements the SupporterDethronedNotificationAction interface. */ export declare function instanceOfSupporterDethronedNotificationAction(value: object): value is SupporterDethronedNotificationAction; export declare function SupporterDethronedNotificationActionFromJSON(json: any): SupporterDethronedNotificationAction; export declare function SupporterDethronedNotificationActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): SupporterDethronedNotificationAction; export declare function SupporterDethronedNotificationActionToJSON(value?: SupporterDethronedNotificationAction | null): any;