/** * 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 { CatalogDataProductAttributeMediaGalleryEntryInterface } from './catalogDataProductAttributeMediaGalleryEntryInterface'; import { CatalogDataProductCustomOptionInterface } from './catalogDataProductCustomOptionInterface'; import { CatalogDataProductExtensionInterface } from './catalogDataProductExtensionInterface'; import { CatalogDataProductLinkInterface } from './catalogDataProductLinkInterface'; import { CatalogDataProductTierPriceInterface } from './catalogDataProductTierPriceInterface'; import { FrameworkAttributeInterface } from './frameworkAttributeInterface'; /** * */ export interface CatalogDataProductInterface { /** * Id */ id?: number; /** * Sku */ sku: string; /** * Name */ name?: string; /** * Attribute set id */ attributeSetId?: number; /** * Price */ price?: number; /** * Status */ status?: number; /** * Visibility */ visibility?: number; /** * Type id */ typeId?: string; /** * Created date */ createdAt?: string; /** * Updated date */ updatedAt?: string; /** * Weight */ weight?: number; extensionAttributes?: CatalogDataProductExtensionInterface; /** * Product links info */ productLinks?: Array; /** * List of product options */ options?: Array; /** * Media gallery entries */ mediaGalleryEntries?: Array; /** * List of product tier prices */ tierPrices?: Array; /** * Custom attributes values. */ customAttributes?: Array; }