Properties
Name | Access | Type | Description |
---|---|---|---|
Content | Read | Content | Content |
ContentId | Read, Write | Guid | Content Id |
ContentTypeId | Read, Write | Guid | Content Type Id |
DateCreated | Read, Write | DateTime | Date Created |
Errors | Read | IList of Error | Errors |
IsMuted | Read, Write | Boolean | Is Muted |
IsSubscribed | Read, Write | Boolean | Is Subscribed |
IsSubscribedToApplication | Read, Write | Boolean | Is Subscribed To Application |
TypeId | Read, Write | Guid | Type Id |
User | Read | User | User |
UserId | Read, Write | Int32 | User Id |
Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $contentSubscription.HasErrors())
JavaScript
var booleanResponse = contentSubscription.HasErrors();
Returns
Boolean
HasWarnings
Velocity
#set($booleanResponse = $contentSubscription.HasWarnings())
JavaScript
var booleanResponse = contentSubscription.HasWarnings();
Returns
Boolean
HasWarningsOrErrors
Velocity
#set($booleanResponse = $contentSubscription.HasWarningsOrErrors())
JavaScript
var booleanResponse = contentSubscription.HasWarningsOrErrors();
Returns
Boolean
ThrowErrors
Velocity
$contentSubscription.ThrowErrors()
JavaScript
contentSubscription.ThrowErrors();