Interface InLine
-
- All Implemented Interfaces:
public interface InLineRepresents a parsed
<InLine>element.
-
-
Method Summary
Modifier and Type Method Description abstract AdSystemgetAdSystem()the ad serving party must provide a descriptive name for the system that serves the ad. abstract StringgetAdTitle()the ad serving party must provide a title for the ad. abstract List<String>getImpressions()the ad server provides an impression-tracking uris. abstract StringgetAdServingId()the serving id of the ad. abstract List<Category>getCategories()the list of Category. abstract StringgetDescription()the description of the ad. abstract AdvertisergetAdvertiser()the value containing an advertiser name can help publishers prevent display of the ad with its competitors. abstract PricinggetPricing()the value used to provide a value that represents a price that can be used by real-time bidding (RTB) systems. abstract StringgetSurvey()the uri to any resource file having to do with collecting survey data. abstract List<String>getErrors()the uris that provides a tracking resource for the error. abstract List<Verification>getAdVerifications()the list of Verification. abstract List<Creative>getCreatives()the list of Creative. abstract List<Extension>getExtensions()the list of Extension. abstract ViewableImpressiongetViewableImpression()the ad server may provide uris for tracking publisher-determined viewability. abstract IntegergetExpires()the number of seconds in which the ad is valid for execution -
-
Method Detail
-
getAdSystem
abstract AdSystem getAdSystem()
the ad serving party must provide a descriptive name for the system that serves the ad.
-
getAdTitle
abstract String getAdTitle()
the ad serving party must provide a title for the ad.
-
getImpressions
abstract List<String> getImpressions()
the ad server provides an impression-tracking uris.
-
getAdServingId
abstract String getAdServingId()
the serving id of the ad.
-
getCategories
abstract List<Category> getCategories()
the list of Category.
-
getDescription
abstract String getDescription()
the description of the ad.
-
getAdvertiser
abstract Advertiser getAdvertiser()
the value containing an advertiser name can help publishers prevent display of the ad with its competitors.
-
getPricing
abstract Pricing getPricing()
the value used to provide a value that represents a price that can be used by real-time bidding (RTB) systems.
-
getSurvey
abstract String getSurvey()
the uri to any resource file having to do with collecting survey data.
The survey node is deprecated in VAST 4.1
-
getErrors
abstract List<String> getErrors()
the uris that provides a tracking resource for the error.
-
getAdVerifications
abstract List<Verification> getAdVerifications()
the list of Verification.
-
getCreatives
abstract List<Creative> getCreatives()
the list of Creative.
-
getExtensions
abstract List<Extension> getExtensions()
the list of Extension.
-
getViewableImpression
abstract ViewableImpression getViewableImpression()
the ad server may provide uris for tracking publisher-determined viewability.
-
getExpires
abstract Integer getExpires()
the number of seconds in which the ad is valid for execution
-
-
-
-