import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { TaxRate, TaxRate$Outbound } from "./taxrate.js"; /** * TaxRate */ export type GetTaxRateResponse = { /** * HTTP Response Status Code */ statusCode: number; /** * HTTP Response Status */ status: string; /** * Apideck ID of service provider */ service: string; /** * Unified API resource name */ resource: string; /** * Operation performed */ operation: string; data: TaxRate; }; /** @internal */ export declare const GetTaxRateResponse$inboundSchema: z.ZodType; /** @internal */ export type GetTaxRateResponse$Outbound = { status_code: number; status: string; service: string; resource: string; operation: string; data: TaxRate$Outbound; }; /** @internal */ export declare const GetTaxRateResponse$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 GetTaxRateResponse$ { /** @deprecated use `GetTaxRateResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetTaxRateResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetTaxRateResponse$Outbound` instead. */ type Outbound = GetTaxRateResponse$Outbound; } export declare function getTaxRateResponseToJSON(getTaxRateResponse: GetTaxRateResponse): string; export declare function getTaxRateResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=gettaxrateresponse.d.ts.map