Values_0.TaskTemplateFieldSourceDescribes a single task template field.
type nonrec t = {id : TaskTemplateFieldIdentifier.t;The unique identifier for the field.
*)description : TaskTemplateFieldDescription.t option;The description of the field.
*)type_ : TaskTemplateFieldType.t option;Indicates the type of field.
*)singleSelectOptions : SingleSelectOptions.t option;A list of options for a single select field.
*)}val make :
?description:??? ->
?type_:??? ->
?singleSelectOptions:??? ->
id:TaskTemplateFieldIdentifier.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `List of [> `String of TaskTemplateSingleSelectOption.t ] list
| `String of TaskTemplateFieldDescription.t
| `Structure of
(string * [> `String of TaskTemplateFieldName.t ]) list ])
list ]