import * as z from "zod/v3"; import * as components from "../components/index.js"; export type ListPaymentOptionsGlobals = { merchantAccountId?: string | undefined; }; export type ListPaymentOptionsRequest = { /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; paymentOptionRequest: components.PaymentOptionRequest; }; /** @internal */ export type ListPaymentOptionsRequest$Outbound = { merchantAccountId?: string | null | undefined; PaymentOptionRequest: components.PaymentOptionRequest$Outbound; }; /** @internal */ export declare const ListPaymentOptionsRequest$outboundSchema: z.ZodType; export declare function listPaymentOptionsRequestToJSON(listPaymentOptionsRequest: ListPaymentOptionsRequest): string; //# sourceMappingURL=listpaymentoptions.d.ts.map