import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { Garnishment } from "../components/garnishment.js"; import { HTTPMetadata } from "../components/httpmetadata.js"; import { UpdateGarnishmentRequest, UpdateGarnishmentRequest$Outbound } from "../components/updategarnishmentrequest.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 PutV1GarnishmentsGarnishmentIdHeaderXGustoAPIVersion: { 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 PutV1GarnishmentsGarnishmentIdHeaderXGustoAPIVersion = ClosedEnum; export type PutV1GarnishmentsGarnishmentIdRequest = { /** * 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?: PutV1GarnishmentsGarnishmentIdHeaderXGustoAPIVersion | undefined; /** * The UUID of the garnishment */ garnishmentId: string; updateGarnishmentRequest: UpdateGarnishmentRequest; }; export type PutV1GarnishmentsGarnishmentIdResponse = { httpMeta: HTTPMetadata; /** * Example response */ garnishment?: Garnishment | undefined; }; /** @internal */ export declare const PutV1GarnishmentsGarnishmentIdHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type PutV1GarnishmentsGarnishmentIdRequest$Outbound = { "X-Gusto-API-Version": string; garnishment_id: string; "Update-Garnishment-Request": UpdateGarnishmentRequest$Outbound; }; /** @internal */ export declare const PutV1GarnishmentsGarnishmentIdRequest$outboundSchema: z.ZodType; export declare function putV1GarnishmentsGarnishmentIdRequestToJSON(putV1GarnishmentsGarnishmentIdRequest: PutV1GarnishmentsGarnishmentIdRequest): string; /** @internal */ export declare const PutV1GarnishmentsGarnishmentIdResponse$inboundSchema: z.ZodType; export declare function putV1GarnishmentsGarnishmentIdResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=putv1garnishmentsgarnishmentid.d.ts.map