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"; /** * A single entry in an employee's home-address history. Returned in the * * @remarks * `all_home_addresses` array; includes the `effective_date` the address * became active in addition to the shared `Employee-Home-Address` fields. */ export type EmployeeHomeAddressHistoryEntry = { street1?: string | null | undefined; street2?: string | null | undefined; city?: string | null | undefined; state?: string | null | undefined; zip?: string | null | undefined; country: string | null; /** * The status of the location. Inactive locations have been deleted, but may still have historical data associated with them. */ active?: boolean | undefined; /** * Unique identifier for this address. */ uuid?: string | undefined; /** * The date the address became effective. */ effectiveDate?: RFCDate | undefined; }; /** @internal */ export declare const EmployeeHomeAddressHistoryEntry$inboundSchema: z.ZodType; export declare function employeeHomeAddressHistoryEntryFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=employeehomeaddresshistoryentry.d.ts.map