/* * 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 PayoutCategory = { OnlineGambling: "online_gambling", } as const; export type PayoutCategory = OpenEnum; /** @internal */ export const PayoutCategory$inboundSchema: z.ZodType< PayoutCategory, z.ZodTypeDef, unknown > = openEnums.inboundSchema(PayoutCategory); /** @internal */ export const PayoutCategory$outboundSchema: z.ZodType< string, z.ZodTypeDef, PayoutCategory > = openEnums.outboundSchema(PayoutCategory);