import { FailedHSCodeClassificationModel } from "./FailedHSCodeClassificationModel"; /** * The output model for an HS code classification. * @export * @class ItemHSCodeClassificationOutputModel */ export declare class ItemHSCodeClassificationOutputModel { /** * @type {number} * @memberof ItemHSCodeClassificationOutputModel */ total?: number | undefined; /** * @type {FailedHSCodeClassificationModel[]} * @memberof ItemHSCodeClassificationOutputModel */ failed?: FailedHSCodeClassificationModel[] | undefined; }