Package com.naver.ads.video.vast.raw
Interface Icon
-
- All Implemented Interfaces:
public interface IconRepresents a parsed
<Icon>element.
-
-
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. abstract List<StaticResource>getStaticResources()the list of StaticResource. abstract List<String>getIFrameResources()the list of iFrameResource.abstract List<String>getHtmlResources()the list of htmlResource.abstract IconClicksgetIconClicks()the IconClicks. abstract StringgetIconViewTracking()the view tracking for icons is used to track when the icon creative is displayed. -
-
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.
-
getYPosition
abstract String getYPosition()
the y-coordinate of the top left corner of the icon asset relative to the ad display area.
-
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.
-
getStaticResources
abstract List<StaticResource> getStaticResources()
the list of StaticResource.
-
getIFrameResources
abstract List<String> getIFrameResources()
the list of
iFrameResource.
-
getHtmlResources
abstract List<String> getHtmlResources()
the list of
htmlResource.
-
getIconClicks
abstract IconClicks getIconClicks()
the IconClicks.
-
getIconViewTracking
abstract String getIconViewTracking()
the view tracking for icons is used to track when the icon creative is displayed.
-
-
-
-