InAppFileShareNotificationTouchListener

@available(iOS 12.0, *)
@objc(BDKInAppFileShareNotificationTouchListener)
public protocol InAppFileShareNotificationTouchListener

Represents a file share notification touch listener.

Classes conforming to this protocol are notified when a file share notification has been touched by the user, providing the FileShareNotification object representing the touched notification. You usually present a CallWindow interface in response to this event handing it an OpenDownloadsIntent object. Doing so it will redirect the user of your app to the Downloads screen shown by the Kaleyra Video CallViewController.

  • Method called whenever the user touches a file share notification presented in-app.

    Declaration

    Swift

    @objc(didTouchFileShareNotification:)
    func onTouch(_ notification: FileShareNotification)

    Parameters

    notification

    An opaque file share notification object representing the notification touched.