Enumerations

The following enumerations are available globally.

  • Undocumented

    See more

    Declaration

    Objective-C

    NS_ENUM(NSUInteger, MediatorState)
    {
        MediatorStateIdle,
        MediatorStateReady,
        MediatorStateLoading,
    }
  • Undocumented

    See more

    Declaration

    Objective-C

    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
    }