/** * 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 { UsdcPurchaseSellerNotificationActionData } from './UsdcPurchaseSellerNotificationActionData'; /** * * @export * @interface UsdcPurchaseSellerNotificationAction */ export interface UsdcPurchaseSellerNotificationAction { /** * * @type {string} * @memberof UsdcPurchaseSellerNotificationAction */ specifier: string; /** * * @type {string} * @memberof UsdcPurchaseSellerNotificationAction */ type: string; /** * * @type {number} * @memberof UsdcPurchaseSellerNotificationAction */ timestamp: number; /** * * @type {UsdcPurchaseSellerNotificationActionData} * @memberof UsdcPurchaseSellerNotificationAction */ data: UsdcPurchaseSellerNotificationActionData; } /** * Check if a given object implements the UsdcPurchaseSellerNotificationAction interface. */ export declare function instanceOfUsdcPurchaseSellerNotificationAction(value: object): value is UsdcPurchaseSellerNotificationAction; export declare function UsdcPurchaseSellerNotificationActionFromJSON(json: any): UsdcPurchaseSellerNotificationAction; export declare function UsdcPurchaseSellerNotificationActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): UsdcPurchaseSellerNotificationAction; export declare function UsdcPurchaseSellerNotificationActionToJSON(value?: UsdcPurchaseSellerNotificationAction | null): any;