import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Address } from "./address.js"; export type ShippingDetails = { /** * 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; /** * The ID for the shipping details. */ id?: string | null | undefined; /** * The ID for the buyer. */ buyerId?: string | null | undefined; /** * Always `shipping-details`. */ type: "shipping-details"; }; /** @internal */ export declare const ShippingDetails$inboundSchema: z.ZodType; export declare function shippingDetailsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=shippingdetails.d.ts.map