Module Values.UserDetailsSource

A structure that contains information about the user session that this batch of events was collected from.

Sourcetype nonrec t = {
  1. userId : UserDetailsUserIdString.t option;
    (*

    The ID of the user for this user session. This ID is generated by RUM and does not include any personally identifiable information about the user.

    *)
  2. sessionId : UserDetailsSessionIdString.t option;
    (*

    The session ID that the performance events are from.

    *)
}
Sourceval make : ?userId:??? -> ?sessionId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of UserDetailsUserIdString.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