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 { RecoveryCase } from "../components/recoverycase.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 GetRecoveryCasesHeaderXGustoAPIVersion: { 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 GetRecoveryCasesHeaderXGustoAPIVersion = ClosedEnum; export type GetRecoveryCasesRequest = { /** * 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?: GetRecoveryCasesHeaderXGustoAPIVersion | undefined; /** * The UUID of the company */ companyUuid: string; /** * The page that is requested. When unspecified, will load all objects unless endpoint forces pagination. */ page?: number | undefined; /** * Number of objects per page. For majority of endpoints will default to 25 */ per?: number | undefined; }; export type GetRecoveryCasesResponse = { httpMeta: HTTPMetadata; /** * Successful */ recoveryCases?: Array | undefined; }; /** @internal */ export declare const GetRecoveryCasesHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type GetRecoveryCasesRequest$Outbound = { "X-Gusto-API-Version": string; company_uuid: string; page?: number | undefined; per?: number | undefined; }; /** @internal */ export declare const GetRecoveryCasesRequest$outboundSchema: z.ZodType; export declare function getRecoveryCasesRequestToJSON(getRecoveryCasesRequest: GetRecoveryCasesRequest): string; /** @internal */ export declare const GetRecoveryCasesResponse$inboundSchema: z.ZodType; export declare function getRecoveryCasesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getrecoverycases.d.ts.map