import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ReturnPolicyType } from "./returnpolicytype.js"; export type FulfillmentDetails = { hasPhysicalGoods: boolean; isShippingProduct: boolean; shipmentDurationDays: number; returnPolicy: ReturnPolicyType; }; /** @internal */ export declare const FulfillmentDetails$inboundSchema: z.ZodType; /** @internal */ export type FulfillmentDetails$Outbound = { hasPhysicalGoods: boolean; isShippingProduct: boolean; shipmentDurationDays: number; returnPolicy: string; }; /** @internal */ export declare const FulfillmentDetails$outboundSchema: z.ZodType; export declare function fulfillmentDetailsToJSON(fulfillmentDetails: FulfillmentDetails): string; export declare function fulfillmentDetailsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=fulfillmentdetails.d.ts.map