/** * 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 { ArtistRemixContestEndedNotificationActionData } from './ArtistRemixContestEndedNotificationActionData'; /** * * @export * @interface ArtistRemixContestEndedNotificationAction */ export interface ArtistRemixContestEndedNotificationAction { /** * * @type {string} * @memberof ArtistRemixContestEndedNotificationAction */ specifier: string; /** * * @type {string} * @memberof ArtistRemixContestEndedNotificationAction */ type: string; /** * * @type {number} * @memberof ArtistRemixContestEndedNotificationAction */ timestamp: number; /** * * @type {ArtistRemixContestEndedNotificationActionData} * @memberof ArtistRemixContestEndedNotificationAction */ data: ArtistRemixContestEndedNotificationActionData; } /** * Check if a given object implements the ArtistRemixContestEndedNotificationAction interface. */ export declare function instanceOfArtistRemixContestEndedNotificationAction(value: object): value is ArtistRemixContestEndedNotificationAction; export declare function ArtistRemixContestEndedNotificationActionFromJSON(json: any): ArtistRemixContestEndedNotificationAction; export declare function ArtistRemixContestEndedNotificationActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ArtistRemixContestEndedNotificationAction; export declare function ArtistRemixContestEndedNotificationActionToJSON(value?: ArtistRemixContestEndedNotificationAction | null): any;