import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PhoneNumber, PhoneNumber$Outbound } from "./phonenumber.js"; /** * Specify the intended recipient of the payout. * * @remarks * Either `email` or `phone` must be specified, but not both. * * This information will be used to authenticate the end user when they follow the payment link. */ export type PayoutRecipient = { email?: string | undefined; phone?: PhoneNumber | undefined; }; /** @internal */ export declare const PayoutRecipient$inboundSchema: z.ZodType; /** @internal */ export type PayoutRecipient$Outbound = { email?: string | undefined; phone?: PhoneNumber$Outbound | undefined; }; /** @internal */ export declare const PayoutRecipient$outboundSchema: z.ZodType; export declare function payoutRecipientToJSON(payoutRecipient: PayoutRecipient): string; export declare function payoutRecipientFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=payoutrecipient.d.ts.map