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

UserActivitySession

import type { UserActivitySession } from "https://googleapis.deno.dev/v1/analyticsreporting:v4.ts";

This represents a user session performed on a specific device at a certain time over a period of time.

interface UserActivitySession {
activities?: Activity[];
dataSource?: string;
deviceCategory?: string;
platform?: string;
sessionDate?: string;
sessionId?: string;
}

§Properties

§
activities?: Activity[]
[src]

Represents a detailed view into each of the activity in this session.

§
dataSource?: string
[src]

The data source of a hit. By default, hits sent from analytics.js are reported as "web" and hits sent from the mobile SDKs are reported as "app". These values can be overridden in the Measurement Protocol.

§
deviceCategory?: string
[src]

The type of device used: "mobile", "tablet" etc.

§
platform?: string
[src]

Platform on which the activity happened: "android", "ios" etc.

§
sessionDate?: string
[src]

Date of this session in ISO-8601 format.

§
sessionId?: string
[src]

Unique ID of the session.