/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; import * as openEnums from "../../types/enums.js"; import { OpenEnum } from "../../types/enums.js"; export const TransactionType = { Credit: "credit", Debit: "debit", } as const; export type TransactionType = OpenEnum; /** @internal */ export const TransactionType$inboundSchema: z.ZodMiniType< TransactionType, unknown > = openEnums.inboundSchema(TransactionType); /** @internal */ export const TransactionType$outboundSchema: z.ZodMiniType< string, TransactionType > = openEnums.outboundSchema(TransactionType);