What is the minimum entries from a ListFolderResult to cause hasMore to be true? I'm writing an application and wanted to test what happens when has more is true. It does not seem that this API support pagination.
The ListFolder interface supports pagination via multiple calls to listFolder and listFolderContinue.
The pages will generally be up to about 2000 entries, but there are various factors that can affect that, so don't rely on that number. You should always check ListFolderResult.hasMore to determine if you should call back.