export Email

interface Email {
    address?: null | string;
    is_primary?: boolean;
    is_validated?: boolean;
    label?: null | string;
}

Properties

address?: null | string
is_primary?: boolean
is_validated?: boolean
label?: null | string