/** * Product classification input model. * @export * @class ItemClassificationInputModel */ export declare class ItemClassificationInputModel { /** * @type {string} * @memberof ItemClassificationInputModel */ productCode: string; /** * @type {string} * @memberof ItemClassificationInputModel */ systemCode?: string | undefined; /** * @type {string} * @memberof ItemClassificationInputModel */ country?: string | undefined; }