Overview

Summary

ContactDonateImprint


Appendix E-9: AD BLOCK DETECTION EVENT (UI prompt)


AdBlockDetectionEventAircraftModuleFlightRadar

Properties (4)

PropertyTypeEntityReferenceModule
(1) ActionTakenSTRINGAdBlockDetectionEvent
(2) DetectedAtUtcDATEAdBlockDetectionEvent
(3) MessageShownSTRINGAdBlockDetectionEvent
(4) UserAccountINTAdBlockDetectionEventUserAccountUserAccountModule


Module Interfaces (6)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /adblockdetectioneventfindAllAdBlockDetectionEvent()AircraftModuleGETAdBlockDetectionEvent
(2) /adblockdetectionevent/useraccount/{id}findAllAdBlockDetectionEventOfUserAccount(id)AircraftModuleGETUserAccount AdBlockDetectionEvent
(3) /adblockdetectionevent/{id}updateAdBlockDetectionEventById(adblockdetectionevent)AircraftModulePUTAdBlockDetectionEvent
(4) /adblockdetectionevent/{id}findAdBlockDetectionEventById(id)AircraftModuleGETAdBlockDetectionEvent
(5) /adblockdetectioneventinsertAdBlockDetectionEvent(adblockdetectionevent)AircraftModulePOSTAdBlockDetectionEvent
(6) /adblockdetectionevent/{id}deleteAdBlockDetectionEventById(id)AircraftModuleDELETEAdBlockDetectionEvent





Example:

final AdBlockDetectionEvent adblockdetectionevent = (AdBlockDetectionEvent) invokeModule(AIRCRAFT_MODULE + "/adblockdetectionevent/" + id, AdBlockDetectionEvent.class);
if (adblockdetectionevent != null) {
    final UserAccount useraccount1 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + adblockdetectionevent.getUserAccount().getId(), UserAccount.class);
    if (useraccount1 != null) {
    }
}
return adblockdetectionevent;


Overview

Summary

ContactDonateImprint