import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { HTTPMetadata } from "../components/httpmetadata.js"; import { SalaryEstimate } from "../components/salaryestimate.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Determines the date-based API version associated with your API call. If none is provided, your application's [minimum API version](https://docs.gusto.com/embedded-payroll/docs/api-versioning#minimum-api-version) is used. */ export declare const GetV1SalaryEstimatesIdHeaderXGustoAPIVersion: { readonly TwoThousandAndTwentyFiveMinus06Minus15: "2025-06-15"; }; /** * Determines the date-based API version associated with your API call. If none is provided, your application's [minimum API version](https://docs.gusto.com/embedded-payroll/docs/api-versioning#minimum-api-version) is used. */ export type GetV1SalaryEstimatesIdHeaderXGustoAPIVersion = ClosedEnum; export type GetV1SalaryEstimatesIdRequest = { /** * Determines the date-based API version associated with your API call. If none is provided, your application's [minimum API version](https://docs.gusto.com/embedded-payroll/docs/api-versioning#minimum-api-version) is used. */ xGustoAPIVersion?: GetV1SalaryEstimatesIdHeaderXGustoAPIVersion | undefined; /** * The UUID of the salary estimate */ uuid: string; }; export type GetV1SalaryEstimatesIdResponse = { httpMeta: HTTPMetadata; /** * successful */ salaryEstimate?: SalaryEstimate | undefined; }; /** @internal */ export declare const GetV1SalaryEstimatesIdHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type GetV1SalaryEstimatesIdRequest$Outbound = { "X-Gusto-API-Version": string; uuid: string; }; /** @internal */ export declare const GetV1SalaryEstimatesIdRequest$outboundSchema: z.ZodType; export declare function getV1SalaryEstimatesIdRequestToJSON(getV1SalaryEstimatesIdRequest: GetV1SalaryEstimatesIdRequest): string; /** @internal */ export declare const GetV1SalaryEstimatesIdResponse$inboundSchema: z.ZodType; export declare function getV1SalaryEstimatesIdResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getv1salaryestimatesid.d.ts.map