Values.MessageSourceThe message object that provides the message text and its type.
type nonrec t = {contentType : ContentType.t;The content type of the message string.
*)content : ContentString.t;The text of the message.
*)groupNumber : GroupNumber.t option;Identifies the message group that the message belongs to. When a group is assigned to a message, Amazon Lex returns one message from each group in the response.
*)}val make :
?groupNumber:??? ->
contentType:ContentType.t ->
content:ContentString.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of GroupNumber.t
| `String of ContentString.t ])
list ]