You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-07-05 00:58:52 +02:00
35 lines
656 B
Plaintext
Vendored
35 lines
656 B
Plaintext
Vendored
---
|
|
sidebar_position: 8
|
|
---
|
|
|
|
import Tabs from '@theme/Tabs';
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
# Get instance settings structure
|
|
Gets the structure template for instance settings
|
|
|
|
|
|
|
|
`Function GetInstanceSettingsStructure(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 - Structure of instance settings
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
|
|
```bsl title="1C:Enterprise/OneScript code example"
|
|
Result = OPI_GreenAPI.GetInstanceSettingsStructure();
|
|
```
|
|
|
|
|
|
|
|
|
|
|