/** * 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 { CatalogDataProductRenderFormattedPriceInfoExtensionInterface } from './catalogDataProductRenderFormattedPriceInfoExtensionInterface'; /** * Formatted Price interface. Aggregate formatted html with price representations. E.g.: $9.00 Consider currency, rounding and html */ export interface CatalogDataProductRenderFormattedPriceInfoInterface { /** * Html with final price */ finalPrice: string; /** * Max price of a product */ maxPrice: string; /** * The minimal price of the product or variation */ minimalPrice: string; /** * Max regular price */ maxRegularPrice: string; /** * Minimal regular price */ minimalRegularPrice: string; /** * Special price */ specialPrice: string; /** * Price - is price of product without discounts and special price with taxes and fixed product tax */ regularPrice: string; extensionAttributes?: CatalogDataProductRenderFormattedPriceInfoExtensionInterface; }