Skip to main content

LatestMapItemRemovedClientData Interface

Identifier and metadata for a removed item.

Sealed

This type is "sealed," meaning that code outside of the library defining it should not implement or extend it. Future versions of this type may add members or make typing of readonly members more specific.

Signature

/** @sealed */
export interface LatestMapItemRemovedClientData<K extends string>

Type Parameters

ParameterConstraintDescription
Kstring

Properties

PropertyTypeDescription
attendeeAttendeeAssociated Attendee.
keyKKey of the removed item.
metadataLatestMetadataMetadata associated with the removal of the item.

Property Details

attendee

Associated Attendee.

Signature

attendee: Attendee;

Type: Attendee

key

Key of the removed item.

Signature

key: K;

Type: K

metadata

Metadata associated with the removal of the item.

Signature

metadata: LatestMetadata;

Type: LatestMetadata