Batch Get Field
connectcases_batch_get_field | R Documentation |
Returns the description for the list of fields in the request parameters¶
Description¶
Returns the description for the list of fields in the request parameters.
Usage¶
Arguments¶
domainId
[required] The unique identifier of the Cases domain.
fields
[required] A list of unique field identifiers.
Value¶
A list with the following syntax:
list(
errors = list(
list(
errorCode = "string",
id = "string",
message = "string"
)
),
fields = list(
list(
createdTime = as.POSIXct(
"2015-01-01"
),
deleted = TRUE|FALSE,
description = "string",
fieldArn = "string",
fieldId = "string",
lastModifiedTime = as.POSIXct(
"2015-01-01"
),
name = "string",
namespace = "System"|"Custom",
tags = list(
"string"
),
type = "Text"|"Number"|"Boolean"|"DateTime"|"SingleSelect"|"Url"|"User"
)
)
)