import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { FormPdf } from "../components/formpdf.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 GetV1ContractorFormPdfHeaderXGustoAPIVersion: { 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 GetV1ContractorFormPdfHeaderXGustoAPIVersion = ClosedEnum; export type GetV1ContractorFormPdfRequest = { /** * 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?: GetV1ContractorFormPdfHeaderXGustoAPIVersion | undefined; /** * The UUID of the contractor */ contractorUuid: string; /** * The UUID of the form */ formId: string; }; export type GetV1ContractorFormPdfResponse = { httpMeta: HTTPMetadata; /** * Example response */ formPdf?: FormPdf | undefined; }; /** @internal */ export declare const GetV1ContractorFormPdfHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type GetV1ContractorFormPdfRequest$Outbound = { "X-Gusto-API-Version": string; contractor_uuid: string; form_id: string; }; /** @internal */ export declare const GetV1ContractorFormPdfRequest$outboundSchema: z.ZodType; export declare function getV1ContractorFormPdfRequestToJSON(getV1ContractorFormPdfRequest: GetV1ContractorFormPdfRequest): string; /** @internal */ export declare const GetV1ContractorFormPdfResponse$inboundSchema: z.ZodType; export declare function getV1ContractorFormPdfResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getv1contractorformpdf.d.ts.map