Values.UpdateGuestUserRequestSourceUpdates the block status of a guest user in a Wickr network. This operation allows you to block or unblock a guest user from accessing the network.
type nonrec t = {networkId : NetworkId.t;The ID of the Wickr network where the guest user's status will be updated.
*)usernameHash : GenericString.t;The username hash (unique identifier) of the guest user to update.
*)block : Boolean.t;Set to true to block the guest user or false to unblock them.
*)}val make :
networkId:NetworkId.t ->
usernameHash:GenericString.t ->
block:Boolean.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Boolean of Boolean.t | `String of NetworkId.t ]) list ]