/** * The HS code classification error model. * @export * @class HSCodeClassificationError */ export declare class HSCodeClassificationError { /** * @type {string} * @memberof HSCodeClassificationError */ code?: string | undefined; /** * @type {string} * @memberof HSCodeClassificationError */ message?: string | undefined; /** * @type {string} * @memberof HSCodeClassificationError */ target?: string | undefined; /** * @type {string} * @memberof HSCodeClassificationError */ faultCode?: string | undefined; }