/** * 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 { CatalogDataProductRenderButtonInterface } from './catalogDataProductRenderButtonInterface'; import { CatalogDataProductRenderExtensionInterface } from './catalogDataProductRenderExtensionInterface'; import { CatalogDataProductRenderImageInterface } from './catalogDataProductRenderImageInterface'; import { CatalogDataProductRenderPriceInfoInterface } from './catalogDataProductRenderPriceInfoInterface'; /** * Represents Data Object which holds enough information to render product This information is put into part as Add To Cart or Add to Compare Data or Price Data */ export interface CatalogDataProductRenderInterface { addToCartButton: CatalogDataProductRenderButtonInterface; addToCompareButton: CatalogDataProductRenderButtonInterface; priceInfo: CatalogDataProductRenderPriceInfoInterface; /** * Enough information, that needed to render image on front */ images: Array; /** * Product url */ url: string; /** * Product identifier */ id: number; /** * Product name */ name: string; /** * Product type. Such as bundle, grouped, simple, etc... */ type: string; /** * Information about product saleability (In Stock) */ isSalable: string; /** * Information about current store id or requested store id */ storeId: number; /** * Current or desired currency code to product */ currencyCode: string; extensionAttributes: CatalogDataProductRenderExtensionInterface; }