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