/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; export type PowertranzOptions = { /** * Indicates to PowerTranz whether to skip the 3DS authentication for this transaction. */ skipThreeDSecure?: boolean | null | undefined; }; /** @internal */ export type PowertranzOptions$Outbound = { skipThreeDSecure?: boolean | null | undefined; }; /** @internal */ export const PowertranzOptions$outboundSchema: z.ZodType< PowertranzOptions$Outbound, z.ZodTypeDef, PowertranzOptions > = z.object({ skipThreeDSecure: z.nullable(z.boolean()).optional(), }); export function powertranzOptionsToJSON( powertranzOptions: PowertranzOptions, ): string { return JSON.stringify( PowertranzOptions$outboundSchema.parse(powertranzOptions), ); }