/** * 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 { FanRemixContestStartedNotificationActionData } from './FanRemixContestStartedNotificationActionData'; /** * * @export * @interface FanRemixContestStartedNotificationAction */ export interface FanRemixContestStartedNotificationAction { /** * * @type {string} * @memberof FanRemixContestStartedNotificationAction */ specifier: string; /** * * @type {string} * @memberof FanRemixContestStartedNotificationAction */ type: string; /** * * @type {number} * @memberof FanRemixContestStartedNotificationAction */ timestamp: number; /** * * @type {FanRemixContestStartedNotificationActionData} * @memberof FanRemixContestStartedNotificationAction */ data: FanRemixContestStartedNotificationActionData; } /** * Check if a given object implements the FanRemixContestStartedNotificationAction interface. */ export declare function instanceOfFanRemixContestStartedNotificationAction(value: object): value is FanRemixContestStartedNotificationAction; export declare function FanRemixContestStartedNotificationActionFromJSON(json: any): FanRemixContestStartedNotificationAction; export declare function FanRemixContestStartedNotificationActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): FanRemixContestStartedNotificationAction; export declare function FanRemixContestStartedNotificationActionToJSON(value?: FanRemixContestStartedNotificationAction | null): any;