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

Event

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

The event details.

interface Event {
currentLabel?: string | null;
entities?: Entity[] | null;
eventId?: string | null;
eventTimestamp?: string | null;
eventTypeName?: string | null;
eventVariables?: {
[key: string]: string | null | undefined;
}
| null;
labelTimestamp?: string | null;
}

§Properties

§
currentLabel?: string | null
[src]

The label associated with the event.

§
entities?: Entity[] | null
[src]

The event entities.

§
eventId?: string | null
[src]

The event ID.

§
eventTimestamp?: string | null
[src]

The timestamp that defines when the event under evaluation occurred. The timestamp must be specified using ISO 8601 standard in UTC.

§
eventTypeName?: string | null
[src]

The event type.

§
eventVariables?: {
[key: string]: string | null | undefined;
}
| null
[src]

Names of the event type's variables you defined in Amazon Fraud Detector to represent data elements and their corresponding values for the event you are sending for evaluation.

§
labelTimestamp?: string | null
[src]

The timestamp associated with the label to update. The timestamp must be specified using ISO 8601 standard in UTC.