Module Values.GuestUserSource

Represents a guest user who has accessed the network from a federated Wickr network.

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

    The billing period when this guest user accessed the network (e.g., '2024-01').

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

    The username of the guest user.

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

    The unique username hash identifier for the guest user.

    *)
}
Sourceval make : ?billingPeriod:??? -> ?username:??? -> ?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