Values.CreateFieldRequestSourceCreates a field in the Cases domain. This field is used to define the case object model (that is, defines what data can be captured on cases) in a Cases domain.
type nonrec t = {domainId : DomainId.t;The unique identifier of the Cases domain.
*)name : FieldName.t;The name of the field.
*)type_ : FieldType.t;Defines the data type, some system constraints, and default display of the field.
*)description : FieldDescription.t option;The description of the field.
*)attributes : FieldAttributes.t option;Union of field attributes.
*)}val make :
?description:??? ->
?attributes:??? ->
domainId:DomainId.t ->
name:FieldName.t ->
type_:FieldType.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of DomainId.t
| `Structure of
(string
* [> `Structure of (string * [> `Boolean of Boolean.t ]) list ])
list ])
list ]