- Properties
- GetExtendedAttributeBool
- GetExtendedAttributeDateTime
- GetExtendedAttributeGuid
- GetExtendedAttributeInt
- GetExtendedAttributeString
- SetExtendedAttributeDateTime
- SetExtendedAttributeGuid
- SetExtendedAttributeInt
- SetExtendedAttributeString
Properties
Name | Access | Type | Description |
---|---|---|---|
Application | Read | Application | Application |
Author | Read, Write | User | Author |
AvatarUrl | Read | String | Avatar Url |
Body | Read, Write | String | Body |
CommentCount | Read | Nullable of Int32 | Comment Count |
ContentId | Read | Guid | Content Id |
Date | Read, Write | Nullable of DateTime | Date |
Downloads | Read | Nullable of Int32 | Downloads |
EmbedCode | Read | String | Embed Code |
ExtendedAttributes | Read | ApiList of ExtendedAttribute | Extended Attributes |
FeaturedImage | Read | String | Featured Image |
File | Read | MediaFile | File |
GroupId | Read | Nullable of Int32 | Group Id |
Id | Read | Nullable of Int32 | Id |
InternalEntity | Read | MediaGalleryPost | Internal Entity |
IsApproved | Read, Write | Nullable of Boolean | Is Approved |
IsFeatured | Read | Nullable of Boolean | Is Featured |
MediaGalleryId | Read | Nullable of Int32 | Media Gallery Id |
PostType | Read | String | Post Type |
RatingCount | Read | Nullable of Int32 | Rating Count |
RatingSum | Read | Nullable of Int32 | Rating Sum |
SearchUniqueId | Read | String | Search Unique Id |
Tags | Read, Write | IList of String | Tags |
Title | Read, Write | String | Title |
Url | Read | String | Url |
Views | Read | Nullable of Int32 | Views |
Methods
GetExtendedAttributeBool
Velocity
#set($booleanResponse = $context_v2_automationTrigger.Arguments.GetExtendedAttributeBool($name, $defaultValue))
JavaScript
var booleanResponse = context_v2_automationTrigger.Arguments.GetExtendedAttributeBool(name, defaultValue);
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
name | String | Name | Required | ||
defaultValue | Boolean | Default Value | Required |
Returns
Boolean
GetExtendedAttributeDateTime
Velocity
#set($dateTimeResponse = $context_v2_automationTrigger.Arguments.GetExtendedAttributeDateTime($name, $defaultValue))
JavaScript
var dateTimeResponse = context_v2_automationTrigger.Arguments.GetExtendedAttributeDateTime(name, defaultValue);
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
name | String | Name | Required | ||
defaultValue | DateTime | Default Value | Required |
Returns
DateTime
GetExtendedAttributeGuid
Velocity
#set($guidResponse = $context_v2_automationTrigger.Arguments.GetExtendedAttributeGuid($name, $defaultValue))
JavaScript
var guidResponse = context_v2_automationTrigger.Arguments.GetExtendedAttributeGuid(name, defaultValue);
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
name | String | Name | Required | ||
defaultValue | Guid | Default Value | Required |
Returns
Guid
GetExtendedAttributeInt
Velocity
#set($int32Response = $context_v2_automationTrigger.Arguments.GetExtendedAttributeInt($name, $defaultValue))
JavaScript
var int32Response = context_v2_automationTrigger.Arguments.GetExtendedAttributeInt(name, defaultValue);
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
name | String | Name | Required | ||
defaultValue | Int32 | Default Value | Required |
Returns
Int32
GetExtendedAttributeString
Velocity
#set($stringResponse = $context_v2_automationTrigger.Arguments.GetExtendedAttributeString($name, $defaultValue))
JavaScript
var stringResponse = context_v2_automationTrigger.Arguments.GetExtendedAttributeString(name, defaultValue);
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
name | String | Name | Required | ||
defaultValue | String | Default Value | Required |
Returns
String
SetExtendedAttributeDateTime
Velocity
$context_v2_automationTrigger.Arguments.SetExtendedAttributeDateTime($name, $value)
JavaScript
context_v2_automationTrigger.Arguments.SetExtendedAttributeDateTime(name, value);
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
name | String | Name | Required | ||
value | DateTime | Value | Required |
Returns
NothingSetExtendedAttributeGuid
Velocity
$context_v2_automationTrigger.Arguments.SetExtendedAttributeGuid($name, $value)
JavaScript
context_v2_automationTrigger.Arguments.SetExtendedAttributeGuid(name, value);
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
name | String | Name | Required | ||
value | Guid | Value | Required |
Returns
NothingSetExtendedAttributeInt
Velocity
$context_v2_automationTrigger.Arguments.SetExtendedAttributeInt($name, $value)
JavaScript
context_v2_automationTrigger.Arguments.SetExtendedAttributeInt(name, value);
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
name | String | Name | Required | ||
value | Int32 | Value | Required |
Returns
NothingSetExtendedAttributeString
Velocity
$context_v2_automationTrigger.Arguments.SetExtendedAttributeString($name, $value)
JavaScript
context_v2_automationTrigger.Arguments.SetExtendedAttributeString(name, value);
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
name | String | Name | Required | ||
value | String | Value | Required |