The type of phone number
import com.apideck.unify.models.components.PhoneNumberType;
PhoneNumberType value = PhoneNumberType.PRIMARY;
// Open enum: use .of() to create instances from custom string values
PhoneNumberType custom = PhoneNumberType.of("custom_value");| Name | Value |
|---|---|
PRIMARY |
primary |
SECONDARY |
secondary |
HOME |
home |
WORK |
work |
OFFICE |
office |
MOBILE |
mobile |
ASSISTANT |
assistant |
FAX |
fax |
DIRECT_DIAL_IN |
direct-dial-in |
PERSONAL |
personal |
BILLING |
billing |
OTHER |
other |