/** * 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 { RemixContestUpdateNotificationActionData } from './RemixContestUpdateNotificationActionData'; /** * * @export * @interface RemixContestUpdateNotificationAction */ export interface RemixContestUpdateNotificationAction { /** * * @type {string} * @memberof RemixContestUpdateNotificationAction */ specifier: string; /** * * @type {string} * @memberof RemixContestUpdateNotificationAction */ type: string; /** * * @type {number} * @memberof RemixContestUpdateNotificationAction */ timestamp: number; /** * * @type {RemixContestUpdateNotificationActionData} * @memberof RemixContestUpdateNotificationAction */ data: RemixContestUpdateNotificationActionData; } /** * Check if a given object implements the RemixContestUpdateNotificationAction interface. */ export declare function instanceOfRemixContestUpdateNotificationAction(value: object): value is RemixContestUpdateNotificationAction; export declare function RemixContestUpdateNotificationActionFromJSON(json: any): RemixContestUpdateNotificationAction; export declare function RemixContestUpdateNotificationActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): RemixContestUpdateNotificationAction; export declare function RemixContestUpdateNotificationActionToJSON(value?: RemixContestUpdateNotificationAction | null): any;