/** * 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 { TrackAddedToPurchasedAlbumNotificationActionData } from './TrackAddedToPurchasedAlbumNotificationActionData'; /** * * @export * @interface TrackAddedToPurchasedAlbumNotificationAction */ export interface TrackAddedToPurchasedAlbumNotificationAction { /** * * @type {string} * @memberof TrackAddedToPurchasedAlbumNotificationAction */ specifier: string; /** * * @type {string} * @memberof TrackAddedToPurchasedAlbumNotificationAction */ type: string; /** * * @type {number} * @memberof TrackAddedToPurchasedAlbumNotificationAction */ timestamp: number; /** * * @type {TrackAddedToPurchasedAlbumNotificationActionData} * @memberof TrackAddedToPurchasedAlbumNotificationAction */ data: TrackAddedToPurchasedAlbumNotificationActionData; } /** * Check if a given object implements the TrackAddedToPurchasedAlbumNotificationAction interface. */ export declare function instanceOfTrackAddedToPurchasedAlbumNotificationAction(value: object): value is TrackAddedToPurchasedAlbumNotificationAction; export declare function TrackAddedToPurchasedAlbumNotificationActionFromJSON(json: any): TrackAddedToPurchasedAlbumNotificationAction; export declare function TrackAddedToPurchasedAlbumNotificationActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): TrackAddedToPurchasedAlbumNotificationAction; export declare function TrackAddedToPurchasedAlbumNotificationActionToJSON(value?: TrackAddedToPurchasedAlbumNotificationAction | null): any;