Builder for
VideoTopic objects.
Example usage:
var videoTopicBuilder = videoAdGroup.videoTargeting().newTopicBuilder();
var videoTopicOperation = videoTopicBuilder
.withTopicId(3) // required
.build(); // create the topic
Methods:
build()
Builds the video topic. Returns a
VideoTopicOperation
that corresponds to the creation of the
VideoTopic.
Return values:
exclude()
Builds the excluded video topic. Returns an
VideoTopicOperation that corresponds to the creation of the
ExcludedVideoTopic.
Return values:
withTopicId(topicId)
Sets the topic ID of the topic. This field is required. The topic ID identifies the topic
category. A list of valid topic IDs is available on our
Verticals page.
Arguments:
Name | Type | Description |
topicId |
long |
The topic ID of the topic. |
Return values: