import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { RFCDate } from "../../types/rfcdate.js"; import { EmployeeAddress } from "../components/employeeaddress.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 PutV1HomeAddressesHomeAddressUuidHeaderXGustoAPIVersion: { 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 PutV1HomeAddressesHomeAddressUuidHeaderXGustoAPIVersion = ClosedEnum; export type PutV1HomeAddressesHomeAddressUuidRequestBody = { /** * 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; street1?: string | undefined; street2?: string | null | undefined; city?: string | undefined; state?: string | undefined; zip?: string | undefined; effectiveDate?: RFCDate | null | undefined; courtesyWithholding?: boolean | undefined; }; export type PutV1HomeAddressesHomeAddressUuidRequest = { /** * 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?: PutV1HomeAddressesHomeAddressUuidHeaderXGustoAPIVersion | undefined; /** * The UUID of the home address */ homeAddressUuid: string; requestBody: PutV1HomeAddressesHomeAddressUuidRequestBody; }; export type PutV1HomeAddressesHomeAddressUuidResponse = { httpMeta: HTTPMetadata; /** * successful */ employeeAddress?: EmployeeAddress | undefined; }; /** @internal */ export declare const PutV1HomeAddressesHomeAddressUuidHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type PutV1HomeAddressesHomeAddressUuidRequestBody$Outbound = { version: string; street_1?: string | undefined; street_2?: string | null | undefined; city?: string | undefined; state?: string | undefined; zip?: string | undefined; effective_date?: string | null | undefined; courtesy_withholding?: boolean | undefined; }; /** @internal */ export declare const PutV1HomeAddressesHomeAddressUuidRequestBody$outboundSchema: z.ZodType; export declare function putV1HomeAddressesHomeAddressUuidRequestBodyToJSON(putV1HomeAddressesHomeAddressUuidRequestBody: PutV1HomeAddressesHomeAddressUuidRequestBody): string; /** @internal */ export type PutV1HomeAddressesHomeAddressUuidRequest$Outbound = { "X-Gusto-API-Version": string; home_address_uuid: string; RequestBody: PutV1HomeAddressesHomeAddressUuidRequestBody$Outbound; }; /** @internal */ export declare const PutV1HomeAddressesHomeAddressUuidRequest$outboundSchema: z.ZodType; export declare function putV1HomeAddressesHomeAddressUuidRequestToJSON(putV1HomeAddressesHomeAddressUuidRequest: PutV1HomeAddressesHomeAddressUuidRequest): string; /** @internal */ export declare const PutV1HomeAddressesHomeAddressUuidResponse$inboundSchema: z.ZodType; export declare function putV1HomeAddressesHomeAddressUuidResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=putv1homeaddresseshomeaddressuuid.d.ts.map