/* * 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 TaxRateEntityType = { Customer: "customer", Subscription: "subscription", Invoice: "invoice", Tenant: "tenant", } as const; export type TaxRateEntityType = OpenEnum; /** @internal */ export const TaxRateEntityType$inboundSchema: z.ZodMiniType< TaxRateEntityType, unknown > = openEnums.inboundSchema(TaxRateEntityType); /** @internal */ export const TaxRateEntityType$outboundSchema: z.ZodMiniType< string, TaxRateEntityType > = openEnums.outboundSchema(TaxRateEntityType);