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