Cool thanks for the quick reply.
I just looked in the sample code, and saw that the listener is as follows:
if event.name == "licence" then print("event.type: "..event.type, "event.status: "..event.status) elseif event.name == "collapsed" then print("Ad collapsed") elseif event.name == "failed" then print("Ad failed to load. isError:"..tostring(event.isError), event.response) elseif event.name == "loaded" then print("Ad loaded", event.response) elseif event.name == "expanded" then print("Ad expanded") end
The “licence”, “loaded” and “failed” events seem self explanatory.
Can you explain exactly what triggers the “expanded” and “collapsed” events. We need to know whether our user’s have interacted with the ad or not, so if those events are equivalent to “clicked” and “closed” that could be useful.