Package com.naver.ads.video.vast
Interface ResolvedCreative
-
- All Implemented Interfaces:
-
android.os.Parcelable,com.naver.ads.video.player.ClickTrackingProvider,com.naver.ads.video.player.TrackingProvider
public interface ResolvedCreative implements ClickTrackingProvider, Parcelable
Represents a generic resolved Creative. It's used as a parent object for more specific ResolvedCreative implementation.
-
-
Method Summary
Modifier and Type Method Description abstract StringgetId()the id used to identify the ad server that provides the creative. abstract StringgetAdId()the ad id used to provide the ad server's unique identifier for the creative. abstract IntegergetSequence()a number representing the numerical order in which each sequenced creative within an ad should play. abstract StringgetApiFramework()the api framework that identifies an API that is needed to execute the creative. abstract List<UniversalAdId>getUniversalAdIds()the list of all universal ad IDs for this ad. abstract List<Extension>getCreativeExtensions()the list used that might be needed for ad execution. abstract List<Tracking>getTrackingEvents()the list used to track that a specified event occurs. -
-
Method Detail
-
getAdId
abstract String getAdId()
the ad id used to provide the ad server's unique identifier for the creative.
-
getSequence
abstract Integer getSequence()
a number representing the numerical order in which each sequenced creative within an ad should play.
-
getApiFramework
abstract String getApiFramework()
the api framework that identifies an API that is needed to execute the creative.
-
getUniversalAdIds
abstract List<UniversalAdId> getUniversalAdIds()
the list of all universal ad IDs for this ad.
-
getCreativeExtensions
abstract List<Extension> getCreativeExtensions()
the list used that might be needed for ad execution.
-
getTrackingEvents
abstract List<Tracking> getTrackingEvents()
the list used to track that a specified event occurs.
-
-
-
-