/*
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
*/
import * as z from "zod/v4-mini";
import { ClosedEnum } from "../../types/enums.js";
/**
* Type of goods of the shipment.
*
* @remarks
* Allowed values available here
*/
export const CustomsDeclarationContentsTypeEnum = {
Documents: "DOCUMENTS",
Gift: "GIFT",
Sample: "SAMPLE",
Merchandise: "MERCHANDISE",
HumanitarianDonation: "HUMANITARIAN_DONATION",
ReturnMerchandise: "RETURN_MERCHANDISE",
Other: "OTHER",
} as const;
/**
* Type of goods of the shipment.
*
* @remarks
* Allowed values available here
*/
export type CustomsDeclarationContentsTypeEnum = ClosedEnum<
typeof CustomsDeclarationContentsTypeEnum
>;
/** @internal */
export const CustomsDeclarationContentsTypeEnum$outboundSchema: z.ZodMiniEnum<
typeof CustomsDeclarationContentsTypeEnum
> = z.enum(CustomsDeclarationContentsTypeEnum);