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