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 { PayrollCheck } from "../components/payrollcheck.js"; import { PrintablePayrollChecksBody, PrintablePayrollChecksBody$Outbound } from "../components/printablepayrollchecksbody.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 PostV1PayrollsPayrollUuidGeneratedDocumentsPrintablePayrollChecksHeaderXGustoAPIVersion: { 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 PostV1PayrollsPayrollUuidGeneratedDocumentsPrintablePayrollChecksHeaderXGustoAPIVersion = ClosedEnum; export type PostV1PayrollsPayrollUuidGeneratedDocumentsPrintablePayrollChecksRequest = { /** * 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?: PostV1PayrollsPayrollUuidGeneratedDocumentsPrintablePayrollChecksHeaderXGustoAPIVersion | undefined; /** * The UUID of the payroll */ payrollUuid: string; printablePayrollChecksBody: PrintablePayrollChecksBody; }; export type PostV1PayrollsPayrollUuidGeneratedDocumentsPrintablePayrollChecksResponse = { httpMeta: HTTPMetadata; /** * Example response */ payrollCheck?: PayrollCheck | undefined; }; /** @internal */ export declare const PostV1PayrollsPayrollUuidGeneratedDocumentsPrintablePayrollChecksHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type PostV1PayrollsPayrollUuidGeneratedDocumentsPrintablePayrollChecksRequest$Outbound = { "X-Gusto-API-Version": string; payroll_uuid: string; "Printable-Payroll-Checks-Body": PrintablePayrollChecksBody$Outbound; }; /** @internal */ export declare const PostV1PayrollsPayrollUuidGeneratedDocumentsPrintablePayrollChecksRequest$outboundSchema: z.ZodType; export declare function postV1PayrollsPayrollUuidGeneratedDocumentsPrintablePayrollChecksRequestToJSON(postV1PayrollsPayrollUuidGeneratedDocumentsPrintablePayrollChecksRequest: PostV1PayrollsPayrollUuidGeneratedDocumentsPrintablePayrollChecksRequest): string; /** @internal */ export declare const PostV1PayrollsPayrollUuidGeneratedDocumentsPrintablePayrollChecksResponse$inboundSchema: z.ZodType; export declare function postV1PayrollsPayrollUuidGeneratedDocumentsPrintablePayrollChecksResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=postv1payrollspayrolluuidgenerateddocumentsprintablepayrollchecks.d.ts.map