Cloud Mail 2020 Kotlin Edition

Questions / Feedback?

AttachmentList Event

Fired when an attachment is retrieved from the server.

Syntax

public open class DefaultOffice365EventListener : Office365EventListener {
  ...
  public override fun attachmentList(e: Office365AttachmentListEvent) {}
  ...
}

public class Office365AttachmentListEvent {
  val id: String?
  val name: String?
  val contentType: String?
  val contentLocation: String?
  val contentBytes: ByteArray?
  val contentId: String?
  val lastModifiedDateTime: String?
  val isInline: Boolean
  val size: Int
}

Remarks

The AttachmentList event is fired for each attachment retrieved from the server when ListAttachments is called.

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