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