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