import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { Form } from "../components/form.js"; import { HTTPMetadata } from "../components/httpmetadata.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 GetV1EmployeeFormHeaderXGustoAPIVersion: { 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 GetV1EmployeeFormHeaderXGustoAPIVersion = ClosedEnum; export type GetV1EmployeeFormRequest = { /** * 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?: GetV1EmployeeFormHeaderXGustoAPIVersion | undefined; /** * The UUID of the employee */ employeeId: string; /** * The UUID of the form */ formId: string; }; export type GetV1EmployeeFormResponse = { httpMeta: HTTPMetadata; /** * Success */ form?: Form | undefined; }; /** @internal */ export declare const GetV1EmployeeFormHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type GetV1EmployeeFormRequest$Outbound = { "X-Gusto-API-Version": string; employee_id: string; form_id: string; }; /** @internal */ export declare const GetV1EmployeeFormRequest$outboundSchema: z.ZodType; export declare function getV1EmployeeFormRequestToJSON(getV1EmployeeFormRequest: GetV1EmployeeFormRequest): string; /** @internal */ export declare const GetV1EmployeeFormResponse$inboundSchema: z.ZodType; export declare function getV1EmployeeFormResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getv1employeeform.d.ts.map