/* * 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 TaxBehavior = { Inclusive: "inclusive", Exclusive: "exclusive", } as const; export type TaxBehavior = OpenEnum; /** @internal */ export const TaxBehavior$inboundSchema: z.ZodMiniType = openEnums.inboundSchema(TaxBehavior); /** @internal */ export const TaxBehavior$outboundSchema: z.ZodMiniType = openEnums.outboundSchema(TaxBehavior);