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