import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { RFCDate } from "../../types/rfcdate.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type EmployeeAddress = { /** * The UUID of the employee address */ uuid: string; /** * The UUID of the employee */ employeeUuid?: string | undefined; /** * The date the employee started living at the address. */ effectiveDate?: RFCDate | undefined; /** * Determines if home taxes should be withheld and paid for employee. */ courtesyWithholding?: boolean | undefined; street1?: string | undefined; street2?: string | null | undefined; city?: string | undefined; state?: string | undefined; zip?: string | undefined; country: string; /** * The status of the location. Inactive locations have been deleted, but may still have historical data associated with them. */ active?: boolean | undefined; /** * 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; }; /** @internal */ export declare const EmployeeAddress$inboundSchema: z.ZodType; export declare function employeeAddressFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=employeeaddress.d.ts.map