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 PutV1RecurringReimbursementsHeaderXGustoAPIVersion: { 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 PutV1RecurringReimbursementsHeaderXGustoAPIVersion = ClosedEnum; export type PutV1RecurringReimbursementsRequestBody = { /** * The current version of the object. See the [versioning guide](https://docs.gusto.com/embedded-payroll/docs/idempotency) for information on how to use this field. */ version: string; /** * The description of the reimbursement */ description?: string | undefined; /** * The dollar amount of the reimbursement */ amount?: number | undefined; }; export type PutV1RecurringReimbursementsRequest = { /** * 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?: PutV1RecurringReimbursementsHeaderXGustoAPIVersion | undefined; /** * The UUID of the reimbursement */ id: string; requestBody: PutV1RecurringReimbursementsRequestBody; }; export type PutV1RecurringReimbursementsResponse = { httpMeta: HTTPMetadata; /** * successful */ recurringReimbursement?: RecurringReimbursement | undefined; }; /** @internal */ export declare const PutV1RecurringReimbursementsHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type PutV1RecurringReimbursementsRequestBody$Outbound = { version: string; description?: string | undefined; amount?: number | undefined; }; /** @internal */ export declare const PutV1RecurringReimbursementsRequestBody$outboundSchema: z.ZodType; export declare function putV1RecurringReimbursementsRequestBodyToJSON(putV1RecurringReimbursementsRequestBody: PutV1RecurringReimbursementsRequestBody): string; /** @internal */ export type PutV1RecurringReimbursementsRequest$Outbound = { "X-Gusto-API-Version": string; id: string; RequestBody: PutV1RecurringReimbursementsRequestBody$Outbound; }; /** @internal */ export declare const PutV1RecurringReimbursementsRequest$outboundSchema: z.ZodType; export declare function putV1RecurringReimbursementsRequestToJSON(putV1RecurringReimbursementsRequest: PutV1RecurringReimbursementsRequest): string; /** @internal */ export declare const PutV1RecurringReimbursementsResponse$inboundSchema: z.ZodType; export declare function putV1RecurringReimbursementsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=putv1recurringreimbursements.d.ts.map