/** * 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 { MilestoneNotificationActionData } from './MilestoneNotificationActionData'; /** * * @export * @interface MilestoneNotificationAction */ export interface MilestoneNotificationAction { /** * * @type {string} * @memberof MilestoneNotificationAction */ specifier: string; /** * * @type {string} * @memberof MilestoneNotificationAction */ type: string; /** * * @type {number} * @memberof MilestoneNotificationAction */ timestamp: number; /** * * @type {MilestoneNotificationActionData} * @memberof MilestoneNotificationAction */ data: MilestoneNotificationActionData; } /** * Check if a given object implements the MilestoneNotificationAction interface. */ export declare function instanceOfMilestoneNotificationAction(value: object): value is MilestoneNotificationAction; export declare function MilestoneNotificationActionFromJSON(json: any): MilestoneNotificationAction; export declare function MilestoneNotificationActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): MilestoneNotificationAction; export declare function MilestoneNotificationActionToJSON(value?: MilestoneNotificationAction | null): any;