- Properties
- GetExtendedAttributeBool
- GetExtendedAttributeDateTime
- GetExtendedAttributeGuid
- GetExtendedAttributeInt
- GetExtendedAttributeString
Properties
| Name | Access | Type | Description |
|---|---|---|---|
| AllowedThreadTypes | Read | IList of String | Allowed Thread Types |
| ApplicationId | Read | Guid | Application Id |
| ApplicationKey | Read | String | Application Key |
| AutoLockingDefaultInterval | Read | Nullable of Int32 | Auto Locking Default Interval |
| AutoLockingEnabled | Read | Boolean | Auto Locking Enabled |
| Container | Read | Container | Container |
| DateCreated | Read | Nullable of DateTime | Date Created |
| DefaultThreadStatus | Read | String | Default Thread Status |
| DefaultThreadType | Read | String | Default Thread Type |
| Description | Read | String | Description |
| EmailAddress | Read | String | Email Address |
| EmailFooter | Read | String | Email Footer |
| EnableAnonymousPosting | Read | Boolean | Enable Anonymous Posting |
| Enabled | Read | Boolean | Enabled |
| EnablePassiveMode | Read | Boolean | Enable Passive Mode |
| EnablePostStatistics | Read | Boolean | Enable Post Statistics |
| EnableQualityVoting | Read, Write | Boolean | Enable Quality Voting |
| ExtendedAttributes | Read | ApiList of ExtendedAttribute | Extended Attributes |
| Group | Read | Group | Group |
| Id | Read | Nullable of Int32 | Id |
| IndexPosts | Read | Boolean | Index Posts |
| InternalEntity | Read | Forum | Internal Entity |
| LatestPostDate | Read | Nullable of DateTime | Latest Post Date |
| MailingListName | Read | String | Mailing List Name |
| ModeratePosts | Read | Boolean | Moderate Posts |
| Name | Read | String | Name |
| PassiveModeAddress | Read | String | Passive Mode Address |
| PostsToModerate | Read | Nullable of Int32 | Posts To Moderate |
| ReplyCount | Read | Int32 | Reply Count |
| ThreadCount | Read | Int32 | Thread Count |
| Url | Read | String | Url |
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
BooleanGetExtendedAttributeDateTime
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
DateTimeGetExtendedAttributeGuid
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
GuidGetExtendedAttributeInt
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
Int32GetExtendedAttributeString
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