/** * 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 { ArtistRemixContestEndingSoonNotificationActionData } from './ArtistRemixContestEndingSoonNotificationActionData'; /** * * @export * @interface ArtistRemixContestEndingSoonNotificationAction */ export interface ArtistRemixContestEndingSoonNotificationAction { /** * * @type {string} * @memberof ArtistRemixContestEndingSoonNotificationAction */ specifier: string; /** * * @type {string} * @memberof ArtistRemixContestEndingSoonNotificationAction */ type: string; /** * * @type {number} * @memberof ArtistRemixContestEndingSoonNotificationAction */ timestamp: number; /** * * @type {ArtistRemixContestEndingSoonNotificationActionData} * @memberof ArtistRemixContestEndingSoonNotificationAction */ data: ArtistRemixContestEndingSoonNotificationActionData; } /** * Check if a given object implements the ArtistRemixContestEndingSoonNotificationAction interface. */ export declare function instanceOfArtistRemixContestEndingSoonNotificationAction(value: object): value is ArtistRemixContestEndingSoonNotificationAction; export declare function ArtistRemixContestEndingSoonNotificationActionFromJSON(json: any): ArtistRemixContestEndingSoonNotificationAction; export declare function ArtistRemixContestEndingSoonNotificationActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ArtistRemixContestEndingSoonNotificationAction; export declare function ArtistRemixContestEndingSoonNotificationActionToJSON(value?: ArtistRemixContestEndingSoonNotificationAction | null): any;