import * as z from "zod/v3"; import { OpenEnum } from "../../types/enums.js"; export declare const ForterAntiFraudOptionsCartItemDeliveryDetailsDeliveryType: { readonly Digital: "DIGITAL"; readonly Physical: "PHYSICAL"; readonly Hybrid: "HYBRID"; }; export type ForterAntiFraudOptionsCartItemDeliveryDetailsDeliveryType = OpenEnum; export type ForterAntiFraudOptionsCartItemDeliveryDetails = { /** * The type of delivery for this cart item. */ deliveryType?: ForterAntiFraudOptionsCartItemDeliveryDetailsDeliveryType | null | undefined; /** * The method of delivery for this cart item. */ deliveryMethod?: string | null | undefined; }; /** @internal */ export declare const ForterAntiFraudOptionsCartItemDeliveryDetailsDeliveryType$outboundSchema: z.ZodType; /** @internal */ export type ForterAntiFraudOptionsCartItemDeliveryDetails$Outbound = { delivery_type?: string | null | undefined; delivery_method?: string | null | undefined; }; /** @internal */ export declare const ForterAntiFraudOptionsCartItemDeliveryDetails$outboundSchema: z.ZodType; export declare function forterAntiFraudOptionsCartItemDeliveryDetailsToJSON(forterAntiFraudOptionsCartItemDeliveryDetails: ForterAntiFraudOptionsCartItemDeliveryDetails): string; //# sourceMappingURL=forterantifraudoptionscartitemdeliverydetails.d.ts.map