Values.UpdateBotRequestSourceUpdates the properties of an existing bot in a Wickr network. This operation allows you to modify the bot's display name, security group, password, or suspension status.
type nonrec t = {networkId : NetworkId.t;The ID of the Wickr network containing the bot to update.
*)botId : BotId.t;The unique identifier of the bot to update.
*)displayName : GenericString.t option;The new display name for the bot.
*)groupId : GenericString.t option;The ID of the new security group to assign the bot to.
*)challenge : SensitiveString.t option;The new password for the bot account.
*)suspend : Boolean.t option;Set to true to suspend the bot or false to unsuspend it. Omit this field for standard updates that don't affect suspension status.
*)}val make :
?displayName:??? ->
?groupId:??? ->
?challenge:??? ->
?suspend:??? ->
networkId:NetworkId.t ->
botId:BotId.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Boolean of Boolean.t | `String of NetworkId.t ]) list ]