Values.BatchDeleteUserRequestSourceDeletes multiple users from a specified Wickr network. This operation permanently removes user accounts and their associated data from the network.
type nonrec t = {networkId : NetworkId.t;The ID of the Wickr network from which users will be deleted.
*)userIds : UserIds.t;A list of user IDs identifying the users to be deleted from the network. Maximum 50 users per batch request.
*)clientToken : ClientToken.t option;A unique identifier for this request to ensure idempotency. If you retry a request with the same client token, the service will return the same response without attempting to delete users again.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `List of [> `String of UserId.t ] list | `String of NetworkId.t ])
list ]