import * as z from "zod/v3"; export type WpayPaytoSimulationOptions = { /** * The simulation being requested. Please refer to the developer guide for a list of all available simulations. */ simulate?: string | null | undefined; /** * The delay in seconds before the requested simulation is executed. */ delay?: number | null | undefined; }; /** @internal */ export type WpayPaytoSimulationOptions$Outbound = { simulate?: string | null | undefined; delay?: number | null | undefined; }; /** @internal */ export declare const WpayPaytoSimulationOptions$outboundSchema: z.ZodType; export declare function wpayPaytoSimulationOptionsToJSON(wpayPaytoSimulationOptions: WpayPaytoSimulationOptions): string; //# sourceMappingURL=wpaypaytosimulationoptions.d.ts.map