Interface Email

Represents the email of a contact

interface Email {
    primary: boolean;
    type: AddressType;
    value: string;
}

Properties

Properties

primary: boolean
value: string