Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

UserDetails

import type { UserDetails } from "https://aws-api.deno.dev/v0.3/services/rum.ts?docs=full";

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

interface UserDetails {
sessionId?: string | null;
userId?: string | null;
}

§Properties

§
sessionId?: string | null
[src]

The session ID that the performance events are from.

§
userId?: string | null
[src]

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.