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