Options
All
  • Public
  • Public/Protected
  • All
Menu

Updates the current identity's typing status in the given thread.

example

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

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

SetTypingStatusCommandInput for command's input shape.

see

SetTypingStatusCommandOutput for command's response shape.

see

config for ChatServiceClient's config shape.

Hierarchy

Implements

Index

Constructors

Properties

Constructors

constructor

Properties

Readonly input

input: SetTypingStatusCommandInput

Readonly middlewareStack

middlewareStack: IMiddlewareStack<SetTypingStatusCommandInput, SetTypingStatusCommandOutput>