Module Values.BlockedGuestUserSource

Represents a guest user who has been blocked from accessing a Wickr network.

Sourcetype nonrec t = {
  1. username : GenericString.t option;
    (*

    The username of the blocked guest user.

    *)
  2. admin : GenericString.t option;
    (*

    The username of the administrator who blocked this guest user.

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

    The timestamp when the guest user was blocked or last modified.

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

    The unique username hash identifier for the blocked guest user.

    *)
}
Sourceval make : ?username:??? -> ?admin:??? -> ?modified:??? -> ?usernameHash:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of GenericString.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