A Gallery entity
Properties
Name | Access | Type | Description |
---|---|---|---|
ApplicationId | Read, Write | Guid | A Guid uniquely identifying the application. |
CommentCount | Read, Write | Int32 | Comment Count |
ContentId | Read | Guid | A Guid uniquely identifying the content. |
DateCreated | Read, Write | Nullable of DateTime | Date Created |
Description | Read, Write | String | Description |
Enabled | Read, Write | Boolean | Enabled |
EnableRatings | Read, Write | Boolean | Enable Ratings |
Errors | Read | IList of Error | Errors |
ExtendedAttributes | Read, Write | ApiList of ExtendedAttribute | Extended Attributes |
Group | Read, Write | Group | Group |
Id | Read, Write | Nullable of Int32 | Id |
Key | Read, Write | String | Key |
LatestPostDate | Read, Write | Nullable of DateTime | Latest Post Date |
Name | Read, Write | String | Name |
Owners | Read, Write | IList of User | Owners |
PostCount | Read, Write | Int32 | Post Count |
Url | Read, Write | String | A Url to the application on the site. |
Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $gallery.HasErrors())
JavaScript
var booleanResponse = gallery.HasErrors();
Returns
Boolean
HasWarnings
Velocity
#set($booleanResponse = $gallery.HasWarnings())
JavaScript
var booleanResponse = gallery.HasWarnings();
Returns
Boolean
HasWarningsOrErrors
Velocity
#set($booleanResponse = $gallery.HasWarningsOrErrors())
JavaScript
var booleanResponse = gallery.HasWarningsOrErrors();
Returns
Boolean
ThrowErrors
Velocity
$gallery.ThrowErrors()
JavaScript
gallery.ThrowErrors();