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 { PayrollBatchResults } from "../components/payrollbatchresults.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetV1PayrollBatchesPayrollBatchUuidSecurity = { 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 GetV1PayrollBatchesPayrollBatchUuidHeaderXGustoAPIVersion: { 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 GetV1PayrollBatchesPayrollBatchUuidHeaderXGustoAPIVersion = ClosedEnum; export type GetV1PayrollBatchesPayrollBatchUuidRequest = { /** * 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?: GetV1PayrollBatchesPayrollBatchUuidHeaderXGustoAPIVersion | undefined; /** * The UUID of the payroll cancellation batch returned by `POST /v1/payroll_batches`. */ payrollBatchUuid: string; }; export type GetV1PayrollBatchesPayrollBatchUuidResponse = { httpMeta: HTTPMetadata; /** * successful */ payrollBatchResults?: PayrollBatchResults | undefined; }; /** @internal */ export type GetV1PayrollBatchesPayrollBatchUuidSecurity$Outbound = { SystemAccessAuth: string; }; /** @internal */ export declare const GetV1PayrollBatchesPayrollBatchUuidSecurity$outboundSchema: z.ZodType; export declare function getV1PayrollBatchesPayrollBatchUuidSecurityToJSON(getV1PayrollBatchesPayrollBatchUuidSecurity: GetV1PayrollBatchesPayrollBatchUuidSecurity): string; /** @internal */ export declare const GetV1PayrollBatchesPayrollBatchUuidHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type GetV1PayrollBatchesPayrollBatchUuidRequest$Outbound = { "X-Gusto-API-Version": string; payroll_batch_uuid: string; }; /** @internal */ export declare const GetV1PayrollBatchesPayrollBatchUuidRequest$outboundSchema: z.ZodType; export declare function getV1PayrollBatchesPayrollBatchUuidRequestToJSON(getV1PayrollBatchesPayrollBatchUuidRequest: GetV1PayrollBatchesPayrollBatchUuidRequest): string; /** @internal */ export declare const GetV1PayrollBatchesPayrollBatchUuidResponse$inboundSchema: z.ZodType; export declare function getV1PayrollBatchesPayrollBatchUuidResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getv1payrollbatchespayrollbatchuuid.d.ts.map