import { CatalogDataBasePriceExtensionInterface } from './catalogDataBasePriceExtensionInterface'; export interface CatalogDataBasePriceInterface { price: number; storeId: number; sku: string; extensionAttributes?: CatalogDataBasePriceExtensionInterface; }