Properties
| Name | Access | Type | Description |
|---|---|---|---|
| EmailAddress | Read, Write | String | Email Address |
| Errors | Read | IList of Error | Errors |
| Event | Read, Write | Event | Event |
| EventId | Read, Write | Nullable of Int32 | Event Id |
| FirstName | Read, Write | String | First Name |
| LastName | Read, Write | String | Last Name |
| RegistrationDate | Read, Write | Nullable of DateTime | Registration Date |
| Status | Read, Write | Nullable of RegistrationStatus | Status |
| Token | Read, Write | Nullable of Guid | Token |
| TokenExpireDate | Read, Write | Nullable of DateTime | Token Expire Date |
| User | Read, Write | User | User |
| UserId | Read, Write | Nullable of Int32 | User Id |
| Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $eventRegistration.HasErrors())
JavaScript
var booleanResponse = eventRegistration.HasErrors();
Returns
BooleanHasWarnings
Velocity
#set($booleanResponse = $eventRegistration.HasWarnings())
JavaScript
var booleanResponse = eventRegistration.HasWarnings();
Returns
BooleanHasWarningsOrErrors
Velocity
#set($booleanResponse = $eventRegistration.HasWarningsOrErrors())
JavaScript
var booleanResponse = eventRegistration.HasWarningsOrErrors();
Returns
BooleanThrowErrors
Velocity
$eventRegistration.ThrowErrors()
JavaScript
eventRegistration.ThrowErrors();