Interface MembersPage

Represents a page of conversation members

interface MembersPage {
    members: MemberJS[] & Member[];
    get nextCursor(): Nullable<string>;
    get previousCursor(): Nullable<string>;
}

Properties

Accessors

Properties

members: MemberJS[] & Member[]

The members 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>