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
Boolean
HasWarnings
Velocity
#set($booleanResponse = $eventRegistration.HasWarnings())
JavaScript
var booleanResponse = eventRegistration.HasWarnings();
Returns
Boolean
HasWarningsOrErrors
Velocity
#set($booleanResponse = $eventRegistration.HasWarningsOrErrors())
JavaScript
var booleanResponse = eventRegistration.HasWarningsOrErrors();
Returns
Boolean
ThrowErrors
Velocity
$eventRegistration.ThrowErrors()
JavaScript
eventRegistration.ThrowErrors();