/* * 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 PaymentMethodType = { Card: "CARD", Ach: "ACH", Offline: "OFFLINE", Credits: "CREDITS", PaymentLink: "PAYMENT_LINK", Upi: "UPI", } as const; export type PaymentMethodType = OpenEnum; /** @internal */ export const PaymentMethodType$inboundSchema: z.ZodMiniType< PaymentMethodType, unknown > = openEnums.inboundSchema(PaymentMethodType); /** @internal */ export const PaymentMethodType$outboundSchema: z.ZodMiniType< string, PaymentMethodType > = openEnums.outboundSchema(PaymentMethodType);