Builder for
VideoPlacement objects.
Example usage:
var videoPlacementBuilder = videoAdGroup
.videoTargeting()
.newPlacementBuilder();
var videoPlacementOperation = videoPlacementBuilder
.withUrl('"http://www.site.com"') // required
.build(); // create the placement
Methods:
build()
Builds the video placement. Returns a
VideoPlacementOperation that corresponds to the creation of the
VideoPlacement.
Return values:
exclude()
Builds the excluded video placement. Returns an
ExcludedVideoPlacementOperation that corresponds to the creation of the
ExcludedVideoPlacement.
Return values:
withUrl(url)
Sets the URL of the placement. This field is required.
Arguments:
Name | Type | Description |
url |
String |
The placement URL. |
Return values: