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

FirebaseSessionEvent

import type { FirebaseSessionEvent } from "https://googleapis.deno.dev/v1/firebasecrashlytics:v1alpha.ts";

Sessions recorded by the Firebase App Quality Sessions SDK.

interface FirebaseSessionEvent {
device?: Device;
eventTime?: Date;
eventType?: "SESSION_EVENT_TYPE_UNKNOWN" | "SESSION_START";
firebaseInstallationId?: string;
firstSessionId?: string;
operatingSystem?: OperatingSystem;
sessionId?: string;
sessionIndex?: number;
version?: Version;
}

§Properties

§
device?: Device
[src]

Mobile device metadata.

§
eventTime?: Date
[src]

The start timestamp for the session event.

§
eventType?: "SESSION_EVENT_TYPE_UNKNOWN" | "SESSION_START"
[src]

Session event type. The SDK only supports SESSION_START events at this time.

§
firebaseInstallationId?: string
[src]

Uniquely identifies a device with Firebase apps installed.

§
firstSessionId?: string
[src]

The identifier of the first session since the last cold start. This id and the session_id will be the same for app launches.

§
operatingSystem?: OperatingSystem
[src]

Operating system and version.

§
sessionId?: string
[src]

Unique identifier for the Firebase session.

§
sessionIndex?: number
[src]

Indicates the number of sessions since the last cold start.

§
version?: Version
[src]

Mobile application version numbers.