Interface MessagePinsIterator<T>

interface MessagePinsIterator<T> {
    lastPinTimestamp?: string;
    limit: number;
    [asyncIterator](): AsyncIterator<MessagePin<T>[], any, undefined>;
}

Type Parameters

Hierarchy

Properties

lastPinTimestamp?: string

The most recent "last" pin timestamp seen by the iterator, used for future requests.

limit: number

The current limit of remaining pins to get.

Methods