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