Content created on the site must implement this interface for the social services to support it.
Properties
| Name | Access | Type | Description |
|---|---|---|---|
| ApplicationId | Read | Guid | A Guid uniquely identifying the application. |
| AvatarUrl | Read | String | The Url to the container’s avatar. |
| ContainerId | Read, Write | Guid | A Guid uniquely identifying the container. |
| DateCreated | Read, Write | Nullable of DateTime | Date Created |
| Description | Read, Write | String | Description |
| EnableContact | Read, Write | Boolean | Enable Contact |
| EnableGroupMessages | Read, Write | Boolean | Enable Group Messages |
| Errors | Read | IList of Error | Errors |
| ExtendedAttributes | Read, Write | ApiList of ExtendedAttribute | Extended Attributes |
| GroupCount | Read | Int32 | Group Count |
| GroupType | Read, Write | String | Group Type |
| HasGroups | Read, Write | Boolean | Has Groups |
| Id | Read, Write | Nullable of Int32 | Id |
| Key | Read, Write | String | Key |
| Name | Read, Write | String | Name |
| ParentGroupId | Read, Write | Nullable of Int32 | Parent Group Id |
| PendingMembers | Read | Int32 | Pending Members |
| ThemeId | Read | Nullable of Guid | Theme Id |
| TotalMembers | Read, Write | Nullable of Int32 | Total Members |
| Url | Read, Write | String | A Url to the container on the site. |
| Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $group.HasErrors())
JavaScript
var booleanResponse = group.HasErrors();
Returns
BooleanHasWarnings
Velocity
#set($booleanResponse = $group.HasWarnings())
JavaScript
var booleanResponse = group.HasWarnings();
Returns
BooleanHasWarningsOrErrors
Velocity
#set($booleanResponse = $group.HasWarningsOrErrors())
JavaScript
var booleanResponse = group.HasWarningsOrErrors();
Returns
BooleanThrowErrors
Velocity
$group.ThrowErrors()
JavaScript
group.ThrowErrors();