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.md
T

47 lines
850 B
Markdown
Raw Normal View History

---
sidebar_position: 1
---
2024-10-12 18:42:55 +03:00
# Get event description
Gets an empty layout to create the event
2024-10-12 18:42:55 +03:00
`Function GetEventDescription(Val Clear = False) Export`
| Parameter | CLI option | Type | Description |
|-|-|-|-|
2024-10-12 18:42:55 +03:00
| Clear | --empty | Boolean | True > structure with empty valuse, False > field descriptions at values |
Returns: Map Of KeyAndValue - Empty event template
2024-07-10 14:05:58 +03:00
<br/>
2024-07-10 13:58:29 +03:00
```bsl title="Code example"
2024-09-29 19:41:20 +03:00
Result = OPI_GoogleCalendar.GetEventDescription();
```
2024-07-10 11:59:55 +03:00
```sh title="CLI command example"
oint gcalendar GetEventDescription
```
```json title="Result"
2024-09-29 21:40:58 +03:00
{
"Description": "",
"Title": "New event",
"Venue": "",
2024-10-09 09:42:00 +03:00
"StartDate": "2024-10-09T09:12:24.0203603Z",
"EndDate": "2024-10-09T10:12:24.0203603Z",
2024-09-29 21:40:58 +03:00
"ArrayOfAttachmentURLs": {},
"SendNotifications": true
}
```