mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-04-15 11:56:36 +02:00
35 lines
685 B
Plaintext
35 lines
685 B
Plaintext
---
|
|
sidebar_position: 6
|
|
---
|
|
|
|
import Tabs from '@theme/Tabs';
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
# Get shipment additional fields
|
|
Returns the structure of inclusion of additional response fields for the GetFBOShipmentsList method
|
|
|
|
|
|
|
|
`Function GetShipmentAdditionalFields(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"
|
|
Result = OPI_Ozon.GetShipmentAdditionalFields();
|
|
```
|
|
|
|
|
|
|
|
|
|
|