Package com.naver.ads.video.vast.raw
Interface Creative
-
- All Implemented Interfaces:
public interface CreativeRepresents a parsed
<Creative>element.
-
-
Method Summary
Modifier and Type Method Description abstract StringgetId()the string used to identify the ad server that provides the creative. abstract StringgetAdId()the value used to provide the ad server’s unique identifier for the creative. abstract IntegergetSequence()the number representing the numerical order in which each sequenced creative within an ad should play. abstract StringgetApiFramework()the string that identifies an API that is needed to execute the creative. abstract List<UniversalAdId>getUniversalAdIds()the list of UniversalAdId. abstract List<Extension>getCreativeExtensions()the list of Extension abstract LineargetLinear()the Linear creative. abstract NonLinearAdsgetNonLinearAds()the NonLinearAds creative. abstract CompanionAdsgetCompanionAds()the CompanionAds creative. -
-
Method Detail
-
getAdId
abstract String getAdId()
the value used to provide the ad server’s unique identifier for the creative.
-
getSequence
abstract Integer getSequence()
the number representing the numerical order in which each sequenced creative within an ad should play.
-
getApiFramework
abstract String getApiFramework()
the string that identifies an API that is needed to execute the creative.
-
getUniversalAdIds
abstract List<UniversalAdId> getUniversalAdIds()
the list of UniversalAdId.
-
getCreativeExtensions
abstract List<Extension> getCreativeExtensions()
the list of Extension
-
getNonLinearAds
abstract NonLinearAds getNonLinearAds()
the NonLinearAds creative.
-
getCompanionAds
abstract CompanionAds getCompanionAds()
the CompanionAds creative.
-
-
-
-