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

Session

import type { Session } from "https://aws-api.deno.dev/v0.4/services/pinpoint.ts?docs=full";

Provides information about a session.

interface Session {
Duration?: number | null;
Id: string;
StartTimestamp: string;
StopTimestamp?: string | null;
}

§Properties

§
Duration?: number | null
[src]

The duration of the session, in milliseconds.

§
Id: string
[src]

The unique identifier for the session.

§
StartTimestamp: string
[src]

The date and time when the session began.

§
StopTimestamp?: string | null
[src]

The date and time when the session ended.