Interface ConversationsPage

Represents a page of conversations

interface ConversationsPage {
    conversations: ConversationJS[] & Conversation[];
    get nextCursor(): Nullable<string>;
    get previousCursor(): Nullable<string>;
}

Properties

conversations: ConversationJS[] & Conversation[]

The conversations in the page

Accessors

  • get nextCursor(): Nullable<string>
  • The cursor to fetch the next page

    Returns Nullable<string>

  • get previousCursor(): Nullable<string>
  • The cursor to fetch the previous page

    Returns Nullable<string>