Options
All
  • Public
  • Public/Protected
  • All
Menu

Kicks a member from the current identity's current party. Identity must be the party leader.

example

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

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

KickMemberCommandInput for command's input shape.

see

KickMemberCommandOutput for command's response shape.

see

config for PartyServiceClient's config shape.

Hierarchy

Implements

Index

Constructors

Properties

Constructors

constructor

Properties

Readonly input

input: KickMemberCommandInput

Readonly middlewareStack

middlewareStack: IMiddlewareStack<KickMemberCommandInput, KickMemberCommandOutput>