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 { 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 GetV1GarnishmentsGarnishmentIdHeaderXGustoAPIVersion: { 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 GetV1GarnishmentsGarnishmentIdHeaderXGustoAPIVersion = ClosedEnum; export type GetV1GarnishmentsGarnishmentIdRequest = { /** * 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?: GetV1GarnishmentsGarnishmentIdHeaderXGustoAPIVersion | undefined; /** * The UUID of the garnishment */ garnishmentId: string; }; export type GetV1GarnishmentsGarnishmentIdResponse = { httpMeta: HTTPMetadata; /** * Example response */ garnishment?: Garnishment | undefined; }; /** @internal */ export declare const GetV1GarnishmentsGarnishmentIdHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type GetV1GarnishmentsGarnishmentIdRequest$Outbound = { "X-Gusto-API-Version": string; garnishment_id: string; }; /** @internal */ export declare const GetV1GarnishmentsGarnishmentIdRequest$outboundSchema: z.ZodType; export declare function getV1GarnishmentsGarnishmentIdRequestToJSON(getV1GarnishmentsGarnishmentIdRequest: GetV1GarnishmentsGarnishmentIdRequest): string; /** @internal */ export declare const GetV1GarnishmentsGarnishmentIdResponse$inboundSchema: z.ZodType; export declare function getV1GarnishmentsGarnishmentIdResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getv1garnishmentsgarnishmentid.d.ts.map