Interface IThreadsListing

interface IThreadsListing {
    hasMore?: boolean;
    members: ThreadMember[];
    threads: Thread[];
}

Properties

hasMore?: boolean

Whether there are potentially additional threads that could be returned on a subsequent call

members: ThreadMember[]

This only includes the bot member, if you you want to list all the members in a thread, see getThreadMembers

threads: Thread[]

Generated using TypeDoc