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