Options
All
  • Public
  • Public/Protected
  • All
Menu

Returns all events relative to the current identity.

example

Use a bare-bones client and the command you need to make an API call.

import { IdentityServiceClient, WatchEventsCommand } from "@rivet-gg/identity"; // ES Modules import
// const { IdentityServiceClient, WatchEventsCommand } = require("@rivet-gg/identity"); // CommonJS import
const client = new IdentityServiceClient(config);
const command = new WatchEventsCommand(input);
const response = await client.send(command);
see

WatchEventsCommandInput for command's input shape.

see

WatchEventsCommandOutput for command's response shape.

see

config for IdentityServiceClient's config shape.

Hierarchy

Implements

Index

Constructors

Properties

Constructors

constructor

Properties

Readonly input

Readonly middlewareStack

middlewareStack: IMiddlewareStack<WatchEventsCommandInput, WatchEventsCommandOutput>