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 EmployeeHomeAddress = { 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 internal ID of the address. */ id?: number | undefined; /** * The date the address became effective. */ effectiveFrom?: RFCDate | undefined; /** * The date the address became inactive. */ effectiveTo?: RFCDate | undefined; /** * The date the address became effective. */ effectiveDate?: RFCDate | undefined; }; /** @internal */ export declare const EmployeeHomeAddress$inboundSchema: z.ZodType; export declare function employeeHomeAddressFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=employeehomeaddress.d.ts.map