Difference between revisions of "DeleteSocialFeed"

From LongJump Support Wiki
imported>Aeric
imported>Aeric
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
{{DISPLAYTITLE:deleteSocialFeed}}
{{DISPLAYTITLE:deleteSocialFeed}}
Delete a feed.
Delete a posted message.


;Syntax:
;Syntax:
:<syntaxhighlight lang="java" enclose="div">
:<syntaxhighlight lang="java" enclose="div">
Result result = Functions.deleteSocialFeed(String feedId);  
void Functions.deleteSocialFeed(String feedId);  
</syntaxhighlight>
</syntaxhighlight>


;Parameters:
;Parameters:
:;objectName:The object name or identifier
:;feedId:The ID of the post.
:;fields:A comma-separated list of names of the fields to retrieve
:;criteria:A [[JAVA API:Filter Expressions in JAVA APIs|filter expression]] that specifies records to select.
:;params: An optional [[Parameters Class|Parameters]] object that contains additional parameters:
:::*''' param -''' ...
 
;Returns:
:[[Result Class|<tt>Result</tt>]] object<br/>
--or--
:An integer containing ...
:A string containing ...


;Throws:
;Throws:
:Exception
:Exception
;Example:This example ....
:<syntaxhighlight lang="java" enclose="div">
...
</syntaxhighlight>

Latest revision as of 03:08, 3 December 2011

Delete a posted message.

Syntax
void Functions.deleteSocialFeed(String feedId);
Parameters
feedId
The ID of the post.
Throws
Exception