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