You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-07-09 01:16:55 +02:00
35 lines
656 B
Plaintext
35 lines
656 B
Plaintext
![]() |
---
|
||
|
sidebar_position: 4
|
||
|
---
|
||
|
|
||
|
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();
|
||
|
```
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|