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