import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CustomFieldType } from "./customfieldtype.js"; /** * A custom field of an employee */ export type EmployeeCustomField = { id: string; /** * This is the id of the response object from when you get the company custom fields */ companyCustomFieldId: string; name: string; /** * Input type for the custom field. */ type: CustomFieldType; description?: string | null | undefined; value: string; /** * An array of options for fields of type radio. Otherwise, null. */ selectionOptions?: Array | null | undefined; }; /** @internal */ export declare const EmployeeCustomField$inboundSchema: z.ZodType; export declare function employeeCustomFieldFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=employeecustomfield.d.ts.map