import * as z from "zod/v3"; import * as components from "../components/index.js"; export type UpdateBuyerGlobals = { merchantAccountId?: string | undefined; }; export type UpdateBuyerRequest = { /** * The ID of the buyer to edit. */ buyerId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; buyerUpdate: components.BuyerUpdate; }; /** @internal */ export type UpdateBuyerRequest$Outbound = { buyer_id: string; merchantAccountId?: string | null | undefined; BuyerUpdate: components.BuyerUpdate$Outbound; }; /** @internal */ export declare const UpdateBuyerRequest$outboundSchema: z.ZodType; export declare function updateBuyerRequestToJSON(updateBuyerRequest: UpdateBuyerRequest): string; //# sourceMappingURL=updatebuyer.d.ts.map