Values.IntOptionsSourceOptions for a 64-bit signed integer field. Present if IndexFieldType specifies the field is of type int. All options are enabled by default.
type nonrec t = {defaultValue : Long.t option;A value to use for the field if the field isn't specified for a document. This can be important if you are using the field in an expression and that field is not present in every document.
*)sourceField : FieldName.t option;The name of the source field to map to the field.
*)facetEnabled : Boolean.t option;Whether facet information can be returned for the field.
*)searchEnabled : Boolean.t option;Whether the contents of the field are searchable.
*)returnEnabled : Boolean.t option;Whether the contents of the field can be returned in the search results.
*)sortEnabled : Boolean.t option;Whether the field can be used to sort the search results.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t | `Long of Long.t | `String of FieldName.t ])
list ]