Properties
Name | Access | Type | Description |
---|---|---|---|
Errors | Read | IList of Error | Errors |
FollowerId | Read, Write | Nullable of Int32 | Follower Id |
FollowingId | Read, Write | Nullable of Int32 | Following Id |
Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $follow.HasErrors())
JavaScript
var booleanResponse = follow.HasErrors();
Returns
Boolean
HasWarnings
Velocity
#set($booleanResponse = $follow.HasWarnings())
JavaScript
var booleanResponse = follow.HasWarnings();
Returns
Boolean
HasWarningsOrErrors
Velocity
#set($booleanResponse = $follow.HasWarningsOrErrors())
JavaScript
var booleanResponse = follow.HasWarningsOrErrors();
Returns
Boolean
ThrowErrors
Velocity
$follow.ThrowErrors()
JavaScript
follow.ThrowErrors();