import { CatalogDataSpecialPriceExtensionInterface } from './catalogDataSpecialPriceExtensionInterface'; export interface CatalogDataSpecialPriceInterface { price: number; storeId: number; sku: string; priceFrom: string; priceTo: string; extensionAttributes?: CatalogDataSpecialPriceExtensionInterface; }