/** * 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 { ArtistRemixContestEndingSoonNotificationAction } from './ArtistRemixContestEndingSoonNotificationAction'; /** * * @export * @interface ArtistRemixContestEndingSoonNotification */ export interface ArtistRemixContestEndingSoonNotification { /** * * @type {string} * @memberof ArtistRemixContestEndingSoonNotification */ type: string; /** * * @type {string} * @memberof ArtistRemixContestEndingSoonNotification */ groupId: string; /** * * @type {boolean} * @memberof ArtistRemixContestEndingSoonNotification */ isSeen: boolean; /** * * @type {number} * @memberof ArtistRemixContestEndingSoonNotification */ seenAt?: number; /** * * @type {Array} * @memberof ArtistRemixContestEndingSoonNotification */ actions: Array; } /** * Check if a given object implements the ArtistRemixContestEndingSoonNotification interface. */ export declare function instanceOfArtistRemixContestEndingSoonNotification(value: object): value is ArtistRemixContestEndingSoonNotification; export declare function ArtistRemixContestEndingSoonNotificationFromJSON(json: any): ArtistRemixContestEndingSoonNotification; export declare function ArtistRemixContestEndingSoonNotificationFromJSONTyped(json: any, ignoreDiscriminator: boolean): ArtistRemixContestEndingSoonNotification; export declare function ArtistRemixContestEndingSoonNotificationToJSON(value?: ArtistRemixContestEndingSoonNotification | null): any;