import type { customfields_createCustomFieldOption } from './customfields_createCustomFieldOption'; export type customfields_createCustomFieldInput = { /** * EntityType is the entity the custom field belongs to. */ entityType: customfields_createCustomFieldInput.entityType; /** * Name is the display name of the custom field. */ name: string; /** * Options are the selectable values; only valid for multiSelect fields. */ options?: Array; /** * Type is the data type of the custom field. */ type: customfields_createCustomFieldInput.type; }; export declare namespace customfields_createCustomFieldInput { /** * EntityType is the entity the custom field belongs to. */ enum entityType { CLIENT = "client", COMPANY = "company" } /** * Type is the data type of the custom field. */ enum type { TEXT = "text", NUMBER = "number", EMAIL = "email", URL = "url", PHONE_NUMBER = "phoneNumber", ADDRESS = "address", MULTI_SELECT = "multiSelect" } }