Cloud Mail 2020 Kotlin Edition

Questions / Feedback?

FolderList Event

Fired when a folder is retrieved by the server.

Syntax

public open class DefaultOffice365EventListener : Office365EventListener {
  ...
  public override fun folderList(e: Office365FolderListEvent) {}
  ...
}

public class Office365FolderListEvent {
  val id: String?
  val displayName: String?
  val parentFolderId: String?
  val childFolderCount: Int
  val unreadItemCount: Int
  val totalItemCount: Int
}

Remarks

The FolderList event is fired for each folder retrieved from the server when ListFolders is called.

Copyright (c) 2021 /n software inc. - All rights reserved.
Cloud Mail 2020 Kotlin Edition - Version 20.0 [Build 7941]