FieldReadConfiguration structure - iOS
-
- UpdatedFeb 1, 2024
- 2 minutes to read
- Washington DC
- API reference
The FieldReadConfiguration structure enables you to configure which fields to fetch from a ServiceNow instance table and in which format.
Name | Type | Description |
---|---|---|
includeFields | Array | List of fields to pass back in the return results. |
options | Array | List of the types of fields to return. Possible values:
|
FieldReadConfiguration init(includeFields: [FieldName] = [], options: Options = [])
Configures the fields within a record in a ServiceNow table to pass back in the return results of a REST endpoint call.
Name | Type | Description |
---|---|---|
includeFields | Array | List of fields to pass back in the return results. |
options | Array | List of the types of fields to return. Possible values:
|
Type | Description |
---|---|
None |
Example
The following code example shows how to call this function.