Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 519 Bytes

File metadata and controls

26 lines (18 loc) · 519 Bytes

EmailType

Email type

Example Usage

import com.apideck.unify.models.components.EmailType;

EmailType value = EmailType.PRIMARY;

// Open enum: use .of() to create instances from custom string values
EmailType custom = EmailType.of("custom_value");

Values

Name Value
PRIMARY primary
SECONDARY secondary
WORK work
PERSONAL personal
BILLING billing
OTHER other