import * as z from "zod/v4-mini"; import { TaxRateStatus } from "./tax-rate-status.js"; export type UpdateTaxRateRequest = { /** * code is the updated unique alphanumeric identifier for the tax rate */ code?: string | undefined; /** * description is the updated text description for the tax rate */ description?: string | undefined; /** * metadata contains updated key-value pairs that will replace existing metadata */ metadata?: { [k: string]: string; } | undefined; /** * name is the updated human-readable name for the tax rate */ name?: string | undefined; taxRateStatus?: TaxRateStatus | undefined; }; /** @internal */ export type UpdateTaxRateRequest$Outbound = { code?: string | undefined; description?: string | undefined; metadata?: { [k: string]: string; } | undefined; name?: string | undefined; tax_rate_status?: string | undefined; }; /** @internal */ export declare const UpdateTaxRateRequest$outboundSchema: z.ZodMiniType; export declare function updateTaxRateRequestToJSON(updateTaxRateRequest: UpdateTaxRateRequest): string; //# sourceMappingURL=update-tax-rate-request.d.ts.map