Interface ResolvedIcon
-
- All Implemented Interfaces:
-
android.os.Parcelable,com.naver.ads.video.player.ClickTrackingProvider,com.naver.ads.video.player.ImpressionTrackingProvider,com.naver.ads.video.player.TrackingProvider,com.naver.ads.video.vast.ResourcesProvider
public interface ResolvedIcon implements ClickTrackingProvider, ImpressionTrackingProvider, ResourcesProvider, Parcelable
Represents a resolved com.naver.ads.video.vast.raw.Icon
-
-
Method Summary
Modifier and Type Method Description abstract StringgetProgram()the program represented in the icon (e.g. abstract IntegergetWidth()the pixel width of the icon asset. abstract IntegergetHeight()the pixel height of the icon asset. abstract StringgetXPosition()the x-coordinate of the top, left corner of the icon asset relative to the ad display area. abstract StringgetYPosition()the y-coordinate of the top left corner of the icon asset relative to the ad display area. abstract LonggetDuration()the duration the icon should be displayed unless clicked or ad is finished playing. abstract LonggetOffset()the time of delay from when the associated linear creative begins playing to when the icon should be displayed. abstract StringgetApiFramework()identifies the API needed to execute the icon resource file if applicable. -
-
Method Detail
-
getProgram
abstract String getProgram()
the program represented in the icon (e.g.
AdChoices).
-
getXPosition
abstract String getXPosition()
the x-coordinate of the top, left corner of the icon asset relative to the ad display area. Values of
leftorrightalso accepted and indicate the leftmost or rightmost available position for the icon asset.
-
getYPosition
abstract String getYPosition()
the y-coordinate of the top left corner of the icon asset relative to the ad display area. values of
toporbottomalso accepted and indicate the topmost or bottommost available position for the icon asset.
-
getDuration
abstract Long getDuration()
the duration the icon should be displayed unless clicked or ad is finished playing.
-
getOffset
abstract Long getOffset()
the time of delay from when the associated linear creative begins playing to when the icon should be displayed.
-
getApiFramework
abstract String getApiFramework()
identifies the API needed to execute the icon resource file if applicable.
-
-
-
-