Package com.jwplayer.pub.api.events
Class AdCompleteEvent
- java.lang.Object
-
- com.jwplayer.pub.api.events.Event
-
- com.jwplayer.pub.api.events.AdCompleteEvent
-
public class AdCompleteEvent extends Event
Payload that accompanies the onAdComplete() event.
-
-
Constructor Summary
Constructors Constructor Description AdCompleteEvent(JWPlayer player, AdClient client, java.lang.String tag, java.lang.String creativeType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AdClient
getClient()
java.lang.String
getCreativeType()
java.lang.String
getTag()
-
-
-
Method Detail
-
getTag
@NonNull public java.lang.String getTag()
- Returns:
- The URL of the ad tag that just completed.
-
getClient
@NonNull public AdClient getClient()
- Returns:
- The client that is currently being used.
-
getCreativeType
@NonNull public java.lang.String getCreativeType()
- Returns:
- The type of ad that is just completed.
-
-