Values.BotSourceRepresents a bot account in a Wickr network with all its informational fields.
type nonrec t = {botId : GenericString.t option;The unique identifier of the bot.
*)displayName : GenericString.t option;The display name of the bot that is visible to users.
*)username : GenericString.t option;The username of the bot.
*)uname : GenericString.t option;The unique username hash identifier for the bot.
*)pubkey : GenericString.t option;The public key of the bot used for encryption.
*)status : BotStatus.t option;The current status of the bot (1 for pending, 2 for active).
*)groupId : GenericString.t option;The ID of the security group to which the bot belongs.
*)hasChallenge : Boolean.t option;Indicates whether the bot has a password set.
*)suspended : Boolean.t option;Indicates whether the bot is currently suspended.
*)lastLogin : GenericString.t option;The timestamp of the bot's last login.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Integer of BotStatus.t
| `String of GenericString.t ])
list ]