import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { BLSOccupation } from "../components/blsoccupation.js"; import { HTTPMetadata } from "../components/httpmetadata.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetV1SalaryEstimatesOccupationsSecurity = { systemAccessAuth: string; }; /** * 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 GetV1SalaryEstimatesOccupationsHeaderXGustoAPIVersion: { 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 GetV1SalaryEstimatesOccupationsHeaderXGustoAPIVersion = ClosedEnum; export type GetV1SalaryEstimatesOccupationsRequest = { /** * 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?: GetV1SalaryEstimatesOccupationsHeaderXGustoAPIVersion | undefined; /** * Search term for occupation (minimum 3 characters) */ search: string; }; export type GetV1SalaryEstimatesOccupationsResponse = { httpMeta: HTTPMetadata; /** * successful */ blsOccupations?: Array | undefined; }; /** @internal */ export type GetV1SalaryEstimatesOccupationsSecurity$Outbound = { SystemAccessAuth: string; }; /** @internal */ export declare const GetV1SalaryEstimatesOccupationsSecurity$outboundSchema: z.ZodType; export declare function getV1SalaryEstimatesOccupationsSecurityToJSON(getV1SalaryEstimatesOccupationsSecurity: GetV1SalaryEstimatesOccupationsSecurity): string; /** @internal */ export declare const GetV1SalaryEstimatesOccupationsHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type GetV1SalaryEstimatesOccupationsRequest$Outbound = { "X-Gusto-API-Version": string; search: string; }; /** @internal */ export declare const GetV1SalaryEstimatesOccupationsRequest$outboundSchema: z.ZodType; export declare function getV1SalaryEstimatesOccupationsRequestToJSON(getV1SalaryEstimatesOccupationsRequest: GetV1SalaryEstimatesOccupationsRequest): string; /** @internal */ export declare const GetV1SalaryEstimatesOccupationsResponse$inboundSchema: z.ZodType; export declare function getV1SalaryEstimatesOccupationsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getv1salaryestimatesoccupations.d.ts.map