/* * 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 TaxRateScope = { Internal: "INTERNAL", External: "EXTERNAL", Onetime: "ONETIME", } as const; export type TaxRateScope = OpenEnum; /** @internal */ export const TaxRateScope$inboundSchema: z.ZodMiniType = openEnums.inboundSchema(TaxRateScope); /** @internal */ export const TaxRateScope$outboundSchema: z.ZodMiniType = openEnums.outboundSchema(TaxRateScope);