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

EventData

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

Represents all the details pertaining to an event.

interface EventData {
eventAction?: string;
eventCategory?: string;
eventCount?: bigint;
eventLabel?: string;
eventValue?: bigint;
}

§Properties

§
eventAction?: string
[src]

Type of interaction with the object. Eg: 'play'.

§
eventCategory?: string
[src]

The object on the page that was interacted with. Eg: 'Video'.

§
eventCount?: bigint
[src]

Number of such events in this activity.

§
eventLabel?: string
[src]

Label attached with the event.

§
eventValue?: bigint
[src]

Numeric value associated with the event.