Values.CreateBotRequestSourceCreates a new bot in a specified Wickr network. Bots are automated accounts that can send and receive messages, enabling integration with external systems and automation of tasks.
type nonrec t = {networkId : NetworkId.t;The ID of the Wickr network where the bot will be created.
*)username : GenericString.t;The username for the bot. This must be unique within the network and follow the network's naming conventions.
*)displayName : GenericString.t option;The display name for the bot that will be visible to users in the network.
*)groupId : GenericString.t;The ID of the security group to which the bot will be assigned.
*)challenge : SensitiveString.t;The password for the bot account.
*)}val make :
?displayName:??? ->
networkId:NetworkId.t ->
username:GenericString.t ->
groupId:GenericString.t ->
challenge:SensitiveString.t ->
unit ->
t