Values.DocumentAttributeValueSourceThe value of a document attribute. You can only provide one value for a document attribute.
type nonrec t = {stringValue : DocumentAttributeStringValue.t option;A string, such as "department".
*)stringListValue : DocumentAttributeStringListValue.t option;A list of strings. The default maximum length or number of strings is 10.
*)longValue : Long.t option;A long integer value.
*)dateValue : Timestamp.t option;A date expressed as an ISO 8601 string. It is important for the time zone to be included in the ISO 8601 date-time format. For example, 2012-03-25T12:30:10+01:00 is the ISO 8601 date-time format for March 25th 2012 at 12:30PM (plus 10 seconds) in Central European Time.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `List of [> `String of String_.t ] list
| `Long of Long.t
| `String of DocumentAttributeStringValue.t
| `Timestamp of Timestamp.t ])
list ]