/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; import { ClosedEnum } from "../../types/enums.js"; export const PaymentGatewayType = { Stripe: "stripe", Razorpay: "razorpay", Nomod: "nomod", Moyasar: "moyasar", Paddle: "paddle", Whop: "whop", } as const; export type PaymentGatewayType = ClosedEnum; /** @internal */ export const PaymentGatewayType$outboundSchema: z.ZodMiniEnum< typeof PaymentGatewayType > = z.enum(PaymentGatewayType);