import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { DisbursementPaymentMethodType } from "./disbursementpaymentmethodtype.js"; import { PayoutRecipient, PayoutRecipient$Outbound } from "./payoutrecipient.js"; export type PaymentLinkPayoutDetailsUpdate = { /** * A list of payment methods that should be supported for this payment link. */ allowedMethods?: Array | undefined; /** * 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. */ recipient?: PayoutRecipient | undefined; /** * Optional free-form metadata for the transfer. */ metadata?: { [k: string]: string; } | undefined; }; /** @internal */ export declare const PaymentLinkPayoutDetailsUpdate$inboundSchema: z.ZodType; /** @internal */ export type PaymentLinkPayoutDetailsUpdate$Outbound = { allowedMethods?: Array | undefined; recipient?: PayoutRecipient$Outbound | undefined; metadata?: { [k: string]: string; } | undefined; }; /** @internal */ export declare const PaymentLinkPayoutDetailsUpdate$outboundSchema: z.ZodType; export declare function paymentLinkPayoutDetailsUpdateToJSON(paymentLinkPayoutDetailsUpdate: PaymentLinkPayoutDetailsUpdate): string; export declare function paymentLinkPayoutDetailsUpdateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=paymentlinkpayoutdetailsupdate.d.ts.map