2024-10-15 10:50:56 +03:00
|
|
|
---
|
2024-10-15 10:16:04 +03:00
|
|
|
sidebar_position: 3
|
|
|
|
---
|
|
|
|
|
2024-10-15 10:50:56 +03:00
|
|
|
import Tabs from '@theme/Tabs';
|
|
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
|
2024-10-15 10:16:04 +03:00
|
|
|
# Get field (string)
|
|
|
|
Gets the description of a string field
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
`Function GetStringField(Val Name) Export`
|
|
|
|
|
|
|
|
| Parameter | CLI option | Type | Description |
|
|
|
|
|-|-|-|-|
|
|
|
|
| Name | --title | String | New field name |
|
|
|
|
|
|
|
|
|
|
|
|
Returns: Structure - Field description
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```bsl title="Code example"
|
|
|
|
Result = OPI_Airtable.GetStringField("String");
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```json title="Result"
|
|
|
|
{
|
|
|
|
"name": "String",
|
|
|
|
"type": "richText"
|
|
|
|
}
|
|
|
|
```
|