import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type LinkedTaxRate = { /** * The ID of the object. */ id?: string | null | undefined; /** * Tax rate code */ code?: string | null | undefined; /** * Name of the tax rate */ name?: string | null | undefined; /** * Rate of the tax rate */ rate?: number | null | undefined; }; /** @internal */ export declare const LinkedTaxRate$inboundSchema: z.ZodType; /** @internal */ export type LinkedTaxRate$Outbound = { id?: string | null | undefined; code?: string | null | undefined; name?: string | null | undefined; rate?: number | null | undefined; }; /** @internal */ export declare const LinkedTaxRate$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace LinkedTaxRate$ { /** @deprecated use `LinkedTaxRate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `LinkedTaxRate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `LinkedTaxRate$Outbound` instead. */ type Outbound = LinkedTaxRate$Outbound; } export declare function linkedTaxRateToJSON(linkedTaxRate: LinkedTaxRate): string; export declare function linkedTaxRateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=linkedtaxrate.d.ts.map