/** * 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 { FanRemixContestEndedNotificationActionData } from './FanRemixContestEndedNotificationActionData'; /** * * @export * @interface FanRemixContestEndedNotificationAction */ export interface FanRemixContestEndedNotificationAction { /** * * @type {string} * @memberof FanRemixContestEndedNotificationAction */ specifier: string; /** * * @type {string} * @memberof FanRemixContestEndedNotificationAction */ type: string; /** * * @type {number} * @memberof FanRemixContestEndedNotificationAction */ timestamp: number; /** * * @type {FanRemixContestEndedNotificationActionData} * @memberof FanRemixContestEndedNotificationAction */ data: FanRemixContestEndedNotificationActionData; } /** * Check if a given object implements the FanRemixContestEndedNotificationAction interface. */ export declare function instanceOfFanRemixContestEndedNotificationAction(value: object): value is FanRemixContestEndedNotificationAction; export declare function FanRemixContestEndedNotificationActionFromJSON(json: any): FanRemixContestEndedNotificationAction; export declare function FanRemixContestEndedNotificationActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): FanRemixContestEndedNotificationAction; export declare function FanRemixContestEndedNotificationActionToJSON(value?: FanRemixContestEndedNotificationAction | null): any;