import * as z from "zod/v3"; import { BillingDetails, BillingDetails$Outbound } from "./billingdetails.js"; /** * Request body for updating an existing buyer */ export type BuyerUpdate = { /** * The display name for the buyer. */ displayName?: string | null | undefined; /** * The merchant identifier for this buyer. */ externalIdentifier?: string | null | undefined; /** * The buyer account number */ accountNumber?: string | null | undefined; /** * The billing name, address, email, and other fields for this buyer. */ billingDetails?: BillingDetails | null | undefined; }; /** @internal */ export type BuyerUpdate$Outbound = { display_name?: string | null | undefined; external_identifier?: string | null | undefined; account_number?: string | null | undefined; billing_details?: BillingDetails$Outbound | null | undefined; }; /** @internal */ export declare const BuyerUpdate$outboundSchema: z.ZodType; export declare function buyerUpdateToJSON(buyerUpdate: BuyerUpdate): string; //# sourceMappingURL=buyerupdate.d.ts.map