1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-06-08 23:56:33 +02:00

44 lines
606 B
Plaintext
Raw Normal View History

2024-10-15 10:16:04 +03:00
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
---
sidebar_position: 6
---
# Get field (checkbox)
Gets the description of a boolean field
`Function GetCheckboxField(Val Name) Export`
| Parameter | CLI option | Type | Description |
|-|-|-|-|
| Name | --title | String | Field name |
Returns: Structure - Field description
<br/>
```bsl title="Code example"
Result = OPI_Airtable.GetCheckboxField("Checkbox");
```
```json title="Result"
{
"name": "Checkbox",
"type": "checkbox",
"options": {
"icon": "check",
"color": "yellowBright"
}
}
```