Module Values.CreateBotRequestSource

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

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

    The ID of the Wickr network where the bot will be created.

    *)
  2. username : GenericString.t;
    (*

    The username for the bot. This must be unique within the network and follow the network's naming conventions.

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

    The display name for the bot that will be visible to users in the network.

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

    The ID of the security group to which the bot will be assigned.

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

    The password for the bot account.

    *)
}
Sourceval context_ : string
Sourceval make : ?displayName:??? -> networkId:NetworkId.t -> username:GenericString.t -> groupId:GenericString.t -> challenge:SensitiveString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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