import * as z from "zod/v4-mini";
import { WeightUnitEnum } from "./weightunitenum.js";
export type CustomsItemCreateRequest = {
/**
* Text description of your item.
*/
description: string;
/**
* Export Control Classification Number, required on some exports from the United States.
*/
eccnEar99?: string | undefined;
/**
* The unit used for weight.
*/
massUnit: WeightUnitEnum;
/**
* A string of up to 100 characters that can be filled with any additional information you
*
* @remarks
* want to attach to the object.
*/
metadata?: string | undefined;
/**
* Total weight of this item, i.e. quantity * weight per item.
*/
netWeight: string;
/**
* Country of origin of the item. Example: `US` or `DE`.
*
* @remarks
* All accepted values can be found on the Official ISO Website.
*/
originCountry: string;
/**
* Quantity of this item in the shipment you send. Must be greater than 0.
*/
quantity: number;
/**
* SKU code of the item, which is required by some carriers.
*/
skuCode?: string | undefined;
/**
* HS code of the item, which is required by some carriers. If `tariff_number` is not provided, `hs_code` will be used. If both `hs_code` and `tariff_number` are provided, `tariff_number` will be used. 50 character limit.
*/
hsCode?: string | undefined;
/**
* The tariff number of the item. If `tariff_number` is not provided, `hs_code` will be used. If both `hs_code` and `tariff_number` are provided, `tariff_number` will be used. 12 character limit.
*/
tariffNumber?: string | undefined;
/**
* Total value of this item, i.e. quantity * value per item.
*/
valueAmount: string;
/**
* Currency used for value_amount. The official ISO 4217
*
* @remarks
* currency codes are used, e.g. `USD` or `EUR`.
*/
valueCurrency: string;
};
/** @internal */
export type CustomsItemCreateRequest$Outbound = {
description: string;
eccn_ear99?: string | undefined;
mass_unit: string;
metadata?: string | undefined;
net_weight: string;
origin_country: string;
quantity: number;
sku_code?: string | undefined;
hs_code?: string | undefined;
tariff_number?: string | undefined;
value_amount: string;
value_currency: string;
};
/** @internal */
export declare const CustomsItemCreateRequest$outboundSchema: z.ZodMiniType;
export declare function customsItemCreateRequestToJSON(customsItemCreateRequest: CustomsItemCreateRequest): string;
//# sourceMappingURL=customsitemcreaterequest.d.ts.map