1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-06-02 23:27:50 +02:00
Vitaly the Alpaca (bot) 164a2d2c04 Main build (Jenkins)
2024-10-15 21:15:56 +03:00

44 lines
919 B
Plaintext

---
sidebar_position: 9
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Get comment structure
Get comment fields structure
`Function GetCommentStructure(Val Clear = False) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Clear | --empty | Boolean | ✖ | True > structure with empty valuse, False > field descriptions at values |
Returns: Structure of KeyAndValue - Fields structure
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Result = OPI_Bitrix24.GetCommentStructure();
```
```json title="Result"
{
"AUTHOR_ID": "<comment author identifier>",
"AUTHOR_NAME": "<Users name (optional)>",
"AUTHOR_EMAIL": "<Users email (optional)>",
"USE_SMILES": "<(Y|N) - parse comments for emoticons or not>",
"POST_MESSAGE": "<Message text>",
"UF_FORUM_MESSAGE_DOC": "<Array of files from disk to attach>"
}
```