imported>Aeric |
imported>Aeric |
(4 intermediate revisions by the same user not shown) |
Line 1: |
Line 1: |
| {{DISPLAYTITLE:__apiName__}} | | {{DISPLAYTITLE:deleteSocialFeed}} |
| Description...
| | Delete a posted message. |
|
| |
|
| ;Syntax: | | ;Syntax: |
| :<syntaxhighlight lang="java" enclose="div"> | | :<syntaxhighlight lang="java" enclose="div"> |
| Result result = Functions.__apiName__(String objectName, String fields, String criteria);
| | void Functions.deleteSocialFeed(String feedId); |
| Result result = Functions.__apiName__(String objectName, String fields, String criteria
| |
| [, Parameters params] );
| |
| Result result = Functions.__apiName__(String objectName, String fields, String criteria);
| |
| Result result = Functions.__apiName__(String objectName, String fields, String criteria,
| |
| String sortBy, String sortOrder,
| |
| String sortBy2, String sortOrder2,
| |
| int offset, int numberOfRows);
| |
| </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>
| |
| <!--ACTIVATE THE CATEGORY BELOW
| |
| <noinclude>
| |
|
| |
| [[Category:Java API | __apiName__]]
| |
| </noinclude>
| |
| -->
| |