1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-12-03 22:39:12 +02:00
Files
OpenIntegrations/docs/en/md/Bitrix24/Calendar-events-management/Get-calendar-events-structure.mdx

35 lines
637 B
Plaintext
Raw Normal View History

2025-01-26 13:33:10 +03:00
---
2025-02-07 21:02:23 +03:00
sidebar_position: 8
2025-01-26 13:33:10 +03:00
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Get calendar events structure
Returns the structure of the calendar event fields
`Function GetCalendarEventsStructure(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"
2025-02-08 15:26:21 +03:00
Result = OPI_Bitrix24.GetCalendarEventsStructure();
2025-01-26 13:33:10 +03:00
```