/** * Represents an input model of a single item for tax code recommendation batches (both synchronous and asynchronous). * @export * @class ItemTaxcodeRecommendationBatchesInputModel */ export declare class ItemTaxcodeRecommendationBatchesInputModel { /** * @type {string} * @memberof ItemTaxcodeRecommendationBatchesInputModel */ description: string; /** * @type {string} * @memberof ItemTaxcodeRecommendationBatchesInputModel */ category?: string | undefined; /** * @type {string} * @memberof ItemTaxcodeRecommendationBatchesInputModel */ itemType?: string | undefined; /** * @type {string} * @memberof ItemTaxcodeRecommendationBatchesInputModel */ upc?: string | undefined; /** * @type {string} * @memberof ItemTaxcodeRecommendationBatchesInputModel */ summary?: string | undefined; }