VIAdEventType

NS_ENUM(NSUInteger, VIAdEventType) {
    VIAdEventLoaded,    // Ad is succesfully loaded and ready to display. Call 'start' to start displaying the ad.
    VIAdEventStarted,   // Ad is on the screen and just started
    VIAdEventCompleted, // All pods were displayed till the end
    VIAdEventPaused,
    VIAdEventResumed,
    VIAdEventExpired,
    VIAdEventClicked,   // User clecked on See more button
    VIAdEventClosed     // Ad was closed by method 'stop' of VIAd protocol
}

Undocumented