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