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