import { TaxCodeRecommendationOutputModel } from "./TaxCodeRecommendationOutputModel"; /** * Represents the output model for tax code recommendation batches (both synchronous and asynchronous). * @export * @class ItemTaxcodeRecommendationBatchesOutputModel */ export declare class ItemTaxcodeRecommendationBatchesOutputModel { /** * @type {string} * @memberof ItemTaxcodeRecommendationBatchesOutputModel */ description?: string | undefined; /** * @type {string} * @memberof ItemTaxcodeRecommendationBatchesOutputModel */ category?: string | undefined; /** * @type {string} * @memberof ItemTaxcodeRecommendationBatchesOutputModel */ itemType?: string | undefined; /** * @type {string} * @memberof ItemTaxcodeRecommendationBatchesOutputModel */ upc?: string | undefined; /** * @type {string} * @memberof ItemTaxcodeRecommendationBatchesOutputModel */ summary?: string | undefined; /** * @type {TaxCodeRecommendationOutputModel[]} * @memberof ItemTaxcodeRecommendationBatchesOutputModel */ taxCodeRecommendations?: TaxCodeRecommendationOutputModel[] | undefined; }