Properties
| Name | Access | Type | Description |
|---|---|---|---|
| EmailAddress | Read, Write | String | Email Address |
| EmailAddressTypes | Read, Write | String | Email Address Types |
| Errors | Read | IList of Error | Errors |
| IsPrivate | Read, Write | Nullable of Boolean | Is Private |
| IsPublic | Read, Write | Nullable of Boolean | Is Public |
| UserId | Read, Write | Nullable of Int32 | User Id |
| Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $unverifiedEmail.HasErrors())
JavaScript
var booleanResponse = unverifiedEmail.HasErrors();
Returns
BooleanHasWarnings
Velocity
#set($booleanResponse = $unverifiedEmail.HasWarnings())
JavaScript
var booleanResponse = unverifiedEmail.HasWarnings();
Returns
BooleanHasWarningsOrErrors
Velocity
#set($booleanResponse = $unverifiedEmail.HasWarningsOrErrors())
JavaScript
var booleanResponse = unverifiedEmail.HasWarningsOrErrors();
Returns
BooleanThrowErrors
Velocity
$unverifiedEmail.ThrowErrors()
JavaScript
unverifiedEmail.ThrowErrors();