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

EventDefinition

import type { EventDefinition } from "https://googleapis.deno.dev/v1/games:v1.ts";

An event definition resource.

interface EventDefinition {
childEvents?: EventChild[];
description?: string;
displayName?: string;
id?: string;
imageUrl?: string;
isDefaultImageUrl?: boolean;
kind?: string;
visibility?: "REVEALED" | "HIDDEN";
}

§Properties

§
childEvents?: EventChild[]
[src]

A list of events that are a child of this event.

§
description?: string
[src]

Description of what this event represents.

§
displayName?: string
[src]

The name to display for the event.

§
id?: string
[src]

The ID of the event.

§
imageUrl?: string
[src]

The base URL for the image that represents the event.

§
isDefaultImageUrl?: boolean
[src]

Indicates whether the icon image being returned is a default image, or is game-provided.

§
kind?: string
[src]

Uniquely identifies the type of this resource. Value is always the fixed string games#eventDefinition.

§
visibility?: "REVEALED" | "HIDDEN"
[src]

The visibility of event being tracked in this definition.