/** * Magento Community * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * * OpenAPI spec version: 2.2 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { CatalogDataSpecialPriceExtensionInterface } from './catalogDataSpecialPriceExtensionInterface'; /** * Product Special Price Interface is used to encapsulate data that can be processed by efficient price API. */ export interface CatalogDataSpecialPriceInterface { /** * Product special price value. */ price: number; /** * ID of store, that contains special price value. */ storeId: number; /** * SKU of product, that contains special price value. */ sku: string; /** * Start date for special price in Y-m-d H:i:s format. */ priceFrom: string; /** * End date for special price in Y-m-d H:i:s format. */ priceTo: string; extensionAttributes?: CatalogDataSpecialPriceExtensionInterface; }