/* * 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 WalletConfigPriceType = { All: "ALL", Usage: "USAGE", Fixed: "FIXED", } as const; export type WalletConfigPriceType = OpenEnum; /** @internal */ export const WalletConfigPriceType$inboundSchema: z.ZodMiniType< WalletConfigPriceType, unknown > = openEnums.inboundSchema(WalletConfigPriceType); /** @internal */ export const WalletConfigPriceType$outboundSchema: z.ZodMiniType< string, WalletConfigPriceType > = openEnums.outboundSchema(WalletConfigPriceType);