Module Values.UpdateGuestUserRequestSource

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

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

    The ID of the Wickr network where the guest user's status will be updated.

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

    The username hash (unique identifier) of the guest user to update.

    *)
  3. block : Boolean.t;
    (*

    Set to true to block the guest user or false to unblock them.

    *)
}
Sourceval context_ : string
Sourceval make : networkId:NetworkId.t -> usernameHash:GenericString.t -> block:Boolean.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