Package com.naver.ads.video.vast
Interface VastParserOptions
-
- All Implemented Interfaces:
public interface VastParserOptionsDefines parameters that control the parsing of vast.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classVastParserOptions.BuilderBuilder for VastParserOptions instances.
-
Method Summary
Modifier and Type Method Description abstract BooleangetAllowMultipleAds()the boolean value the identifies whether multiple ads are allowed in the requested VAST response. abstract IntegergetMaxRedirects()the maximum number of VAST redirects. abstract LonggetVastLoadTimeout()the specifies the VAST load timeout in milliseconds for a single wrapper. abstract StringgetAlteredPrivacyUrl()alternative privacy url abstract Map<String, String>getVastMacros()Parameters for VAST Macro substitution. -
-
Method Detail
-
getAllowMultipleAds
abstract Boolean getAllowMultipleAds()
the boolean value the identifies whether multiple ads are allowed in the requested VAST response. This will override any value of allowMultipleAds attribute set in the VAST
-
getMaxRedirects
abstract Integer getMaxRedirects()
the maximum number of VAST redirects.
-
getVastLoadTimeout
abstract Long getVastLoadTimeout()
the specifies the VAST load timeout in milliseconds for a single wrapper.
-
getAlteredPrivacyUrl
abstract String getAlteredPrivacyUrl()
alternative privacy url
-
getVastMacros
abstract Map<String, String> getVastMacros()
Parameters for VAST Macro substitution. A map containing macro key-value pairs used for macro replacement in VAST ad tag URI and tracking URLs.
-
-
-
-