import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PazeMobileNumber, PazeMobileNumber$Outbound } from "./pazemobilenumber.js"; export type PazeDeliveryContactDetails = { /** * Consumer-provided name of the contact person. */ contactFullName: string | null; contactPhoneNumber: PazeMobileNumber | null; }; /** @internal */ export declare const PazeDeliveryContactDetails$inboundSchema: z.ZodType; /** @internal */ export type PazeDeliveryContactDetails$Outbound = { contactFullName: string | null; contactPhoneNumber: PazeMobileNumber$Outbound | null; }; /** @internal */ export declare const PazeDeliveryContactDetails$outboundSchema: z.ZodType; export declare function pazeDeliveryContactDetailsToJSON(pazeDeliveryContactDetails: PazeDeliveryContactDetails): string; export declare function pazeDeliveryContactDetailsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=pazedeliverycontactdetails.d.ts.map