/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; import * as openEnums from "../../types/enums.js"; import { OpenEnum } from "../../types/enums.js"; export const FlowAction = { SelectPaymentOptions: "select-payment-options", RouteTransaction: "route-transaction", DeclineEarly: "decline-early", Skip3ds: "skip-3ds", } as const; export type FlowAction = OpenEnum; /** @internal */ export const FlowAction$inboundSchema: z.ZodType< FlowAction, z.ZodTypeDef, unknown > = openEnums.inboundSchema(FlowAction);