Module Values.UpdateBotRequestSource

Updates 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.

Sourcetype nonrec t = {
  1. networkId : NetworkId.t;
    (*

    The ID of the Wickr network containing the bot to update.

    *)
  2. botId : BotId.t;
    (*

    The unique identifier of the bot to update.

    *)
  3. displayName : GenericString.t option;
    (*

    The new display name for the bot.

    *)
  4. groupId : GenericString.t option;
    (*

    The ID of the new security group to assign the bot to.

    *)
  5. challenge : SensitiveString.t option;
    (*

    The new password for the bot account.

    *)
  6. 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.

    *)
}
Sourceval context_ : string
Sourceval make : ?displayName:??? -> ?groupId:??? -> ?challenge:??? -> ?suspend:??? -> networkId:NetworkId.t -> botId:BotId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of NetworkId.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t