Task Template Field Args
data class TaskTemplateFieldArgs(val description: Output<String>? = null, val id: Output<TaskTemplateFieldIdentifierArgs>, val singleSelectOptions: Output<List<String>>? = null, val type: Output<TaskTemplateFieldType>) : ConvertibleToJava<TaskTemplateFieldArgs>
A task template field object.
Constructors
Link copied to clipboard
constructor(description: Output<String>? = null, id: Output<TaskTemplateFieldIdentifierArgs>, singleSelectOptions: Output<List<String>>? = null, type: Output<TaskTemplateFieldType>)
Properties
Link copied to clipboard
The description of the task template's field
Link copied to clipboard
The unique identifier for the field.
Link copied to clipboard
list of field options to be used with single select
Link copied to clipboard
Indicates the type of field. Following are the valid field types: NAME
DESCRIPTION
| SCHEDULED_TIME
| QUICK_CONNECT
| URL
| NUMBER
| TEXT
| TEXT_AREA
| DATE_TIME
| BOOLEAN
| SINGLE_SELECT
| EMAIL