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

SearchUserActivityResponse

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

The response from userActivity:get call.

interface SearchUserActivityResponse {
nextPageToken?: string;
sampleRate?: number;
sessions?: UserActivitySession[];
totalRows?: number;
}

§Properties

§
nextPageToken?: string
[src]

This token should be passed to SearchUserActivityRequest to retrieve the next page.

§
sampleRate?: number
[src]

This field represents the sampling rate for the given request and is a number between 0.0 to 1.0. See developer guide for details.

§

Each record represents a session (device details, duration, etc).

§
totalRows?: number
[src]

Total rows returned by this query (across different pages).