1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2026-05-22 10:05:29 +02:00
Files
OpenIntegrations/docs/en/md/Google_Calendar/Event-management/Get-event-description.mdx
T
Vitaly the Alpaca (bot) 294bd2e77c Main build (Jenkins)
2024-10-15 10:50:56 +03:00

45 lines
795 B
Plaintext

---
sidebar_position: 1
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Get event description
Gets an empty layout to create the event
`Function GetEventDescription(Val Clear = False) Export`
| Parameter | CLI option | Type | Description |
|-|-|-|-|
| Clear | --empty | Boolean | True > structure with empty valuse, False > field descriptions at values |
Returns: Map Of KeyAndValue - Empty event template
<br/>
```bsl title="Code example"
Result = OPI_GoogleCalendar.GetEventDescription();
```
```json title="Result"
{
"Description": "",
"Title": "New event",
"Venue": "",
"StartDate": "2024-10-09T09:12:24.0203603Z",
"EndDate": "2024-10-09T10:12:24.0203603Z",
"ArrayOfAttachmentURLs": {},
"SendNotifications": true
}
```