/** * 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 { Notification } from './Notification'; /** * * @export * @interface Notifications */ export interface Notifications { /** * * @type {Array} * @memberof Notifications */ notifications?: Array; /** * * @type {number} * @memberof Notifications */ unreadCount: number; } /** * Check if a given object implements the Notifications interface. */ export declare function instanceOfNotifications(value: object): value is Notifications; export declare function NotificationsFromJSON(json: any): Notifications; export declare function NotificationsFromJSONTyped(json: any, ignoreDiscriminator: boolean): Notifications; export declare function NotificationsToJSON(value?: Notifications | null): any;