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 { RecurringReimbursement } from "../components/recurringreimbursement.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 GetV1RecurringReimbursementsHeaderXGustoAPIVersion: { 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 GetV1RecurringReimbursementsHeaderXGustoAPIVersion = ClosedEnum; export type GetV1RecurringReimbursementsRequest = { /** * 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?: GetV1RecurringReimbursementsHeaderXGustoAPIVersion | undefined; /** * The UUID of the reimbursement */ id: string; }; export type GetV1RecurringReimbursementsResponse = { httpMeta: HTTPMetadata; /** * successful */ recurringReimbursement?: RecurringReimbursement | undefined; }; /** @internal */ export declare const GetV1RecurringReimbursementsHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type GetV1RecurringReimbursementsRequest$Outbound = { "X-Gusto-API-Version": string; id: string; }; /** @internal */ export declare const GetV1RecurringReimbursementsRequest$outboundSchema: z.ZodType; export declare function getV1RecurringReimbursementsRequestToJSON(getV1RecurringReimbursementsRequest: GetV1RecurringReimbursementsRequest): string; /** @internal */ export declare const GetV1RecurringReimbursementsResponse$inboundSchema: z.ZodType; export declare function getV1RecurringReimbursementsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getv1recurringreimbursements.d.ts.map