Properties
| Name | Access | Type | Description |
|---|---|---|---|
| Content | Read | Content | Content |
| ContentId | Read, Write | Guid | Content Id |
| ContentTypeId | Read, Write | Guid | Content Type Id |
| CreatedDate | Read, Write | DateTime | Created Date |
| Description | Read, Write | String | Description |
| Errors | Read | IList of Error | Errors |
| PointTransactionId | Read, Write | Int64 | Point Transaction Id |
| TypeId | Read, Write | Nullable of Guid | Type Id |
| UserId | Read, Write | Int32 | User Id |
| Value | Read, Write | Int32 | Value |
| Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $pointTransaction.HasErrors())
JavaScript
var booleanResponse = pointTransaction.HasErrors();
Returns
BooleanHasWarnings
Velocity
#set($booleanResponse = $pointTransaction.HasWarnings())
JavaScript
var booleanResponse = pointTransaction.HasWarnings();
Returns
BooleanHasWarningsOrErrors
Velocity
#set($booleanResponse = $pointTransaction.HasWarningsOrErrors())
JavaScript
var booleanResponse = pointTransaction.HasWarningsOrErrors();
Returns
BooleanThrowErrors
Velocity
$pointTransaction.ThrowErrors()
JavaScript
pointTransaction.ThrowErrors();