import { ClassificationModel } from "./ClassificationModel"; import { ItemParameterModel } from "./ItemParameterModel"; import { ItemCustomParametersModel } from "./ItemCustomParametersModel"; /** * Represents an item in your company's product catalog. * @export * @class ItemCatalogueInputModel */ export declare class ItemCatalogueInputModel { /** * @type {number} * @memberof ItemCatalogueInputModel */ itemId?: number | undefined; /** * @type {string} * @memberof ItemCatalogueInputModel */ itemCode: string; /** * @type {string} * @memberof ItemCatalogueInputModel */ description: string; /** * @type {string} * @memberof ItemCatalogueInputModel */ taxCode?: string | undefined; /** * @type {string} * @memberof ItemCatalogueInputModel */ itemType?: string | undefined; /** * @type {string} * @memberof ItemCatalogueInputModel */ upc?: string | undefined; /** * @type {string} * @memberof ItemCatalogueInputModel */ summary?: string | undefined; /** * @type {string} * @memberof ItemCatalogueInputModel */ itemGroup?: string | undefined; /** * @type {string} * @memberof ItemCatalogueInputModel */ category?: string | undefined; /** * @type {string} * @memberof ItemCatalogueInputModel */ source: string; /** * @type {string} * @memberof ItemCatalogueInputModel */ sourceEntityId?: string | undefined; /** * @type {object} * @memberof ItemCatalogueInputModel */ properties?: object | undefined; /** * @type {ClassificationModel[]} * @memberof ItemCatalogueInputModel */ classifications?: ClassificationModel[] | undefined; /** * @type {ItemParameterModel[]} * @memberof ItemCatalogueInputModel */ parameters?: ItemParameterModel[] | undefined; /** * @type {ItemCustomParametersModel[]} * @memberof ItemCatalogueInputModel */ customParameters?: ItemCustomParametersModel[] | undefined; }