/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; export type GetTaxRateRequest = { /** * Tax rate ID */ id: string; }; /** @internal */ export type GetTaxRateRequest$Outbound = { id: string; }; /** @internal */ export const GetTaxRateRequest$outboundSchema: z.ZodMiniType< GetTaxRateRequest$Outbound, GetTaxRateRequest > = z.object({ id: z.string(), }); export function getTaxRateRequestToJSON( getTaxRateRequest: GetTaxRateRequest, ): string { return JSON.stringify( GetTaxRateRequest$outboundSchema.parse(getTaxRateRequest), ); }