Values.BotMetadataSourceProvides information about a bot. .
type nonrec t = {name : BotName.t option;The name of the bot.
*)description : Description.t option;A description of the bot.
*)status : Status.t option;The status of the bot.
*)lastUpdatedDate : Timestamp.t option;The date that the bot was updated. When you create a bot, the creation date and last updated date are the same.
*)createdDate : Timestamp.t option;The date that the bot was created.
*)version : Version.t option;The version of the bot. For a new bot, the version is always $LATEST.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of BotName.t
| `Timestamp of Timestamp.t ])
list ]