/** * 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 { UsdcPurchaseBuyerNotificationActionData } from './UsdcPurchaseBuyerNotificationActionData'; /** * * @export * @interface UsdcPurchaseBuyerNotificationAction */ export interface UsdcPurchaseBuyerNotificationAction { /** * * @type {string} * @memberof UsdcPurchaseBuyerNotificationAction */ specifier: string; /** * * @type {string} * @memberof UsdcPurchaseBuyerNotificationAction */ type: string; /** * * @type {number} * @memberof UsdcPurchaseBuyerNotificationAction */ timestamp: number; /** * * @type {UsdcPurchaseBuyerNotificationActionData} * @memberof UsdcPurchaseBuyerNotificationAction */ data: UsdcPurchaseBuyerNotificationActionData; } /** * Check if a given object implements the UsdcPurchaseBuyerNotificationAction interface. */ export declare function instanceOfUsdcPurchaseBuyerNotificationAction(value: object): value is UsdcPurchaseBuyerNotificationAction; export declare function UsdcPurchaseBuyerNotificationActionFromJSON(json: any): UsdcPurchaseBuyerNotificationAction; export declare function UsdcPurchaseBuyerNotificationActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): UsdcPurchaseBuyerNotificationAction; export declare function UsdcPurchaseBuyerNotificationActionToJSON(value?: UsdcPurchaseBuyerNotificationAction | null): any;