import * as z from "zod/v3"; import { Address, Address$Outbound } from "./address.js"; export type ShippingDetailsUpdate = { /** * The first name(s) or given name for the buyer. */ firstName?: string | null | undefined; /** * The last name, or family name, of the buyer. */ lastName?: string | null | undefined; /** * The email address for the buyer. */ emailAddress?: string | null | undefined; /** * The phone number for the buyer which should be formatted according to the E164 number standard. */ phoneNumber?: string | null | undefined; /** * The billing address for the buyer. */ address?: Address | null | undefined; }; /** @internal */ export type ShippingDetailsUpdate$Outbound = { first_name?: string | null | undefined; last_name?: string | null | undefined; email_address?: string | null | undefined; phone_number?: string | null | undefined; address?: Address$Outbound | null | undefined; }; /** @internal */ export declare const ShippingDetailsUpdate$outboundSchema: z.ZodType; export declare function shippingDetailsUpdateToJSON(shippingDetailsUpdate: ShippingDetailsUpdate): string; //# sourceMappingURL=shippingdetailsupdate.d.ts.map