/** * 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 { CatalogDataProductRenderButtonExtensionInterface } from './catalogDataProductRenderButtonExtensionInterface'; /** * Button interface. This interface represents all manner of product buttons: add to cart, add to compare, etc... The buttons describes by this interface should have interaction with backend */ export interface CatalogDataProductRenderButtonInterface { /** * Post data */ postData: string; /** * Url, needed to add product to cart */ url: string; /** * Flag whether a product has options or not */ requiredOptions: boolean; extensionAttributes?: CatalogDataProductRenderButtonExtensionInterface; }