export type SessionEnvironment = {
    /**
     * The IpAddress of the end user.
     */
    ipAddress?: string | null;
    /**
     * The request user agent.
     */
    userAgent?: string | null;
};
