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