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