AdsApp.AdBuilderSpace
Stay organized with collections
Save and categorize content based on your preferences.
Starting point for creating an ad in an ad group.
Typical usage:
var adOperation = adGroup.newAd().expandedTextAdBuilder()
.withHeadlinePart1("First headline of ad")
.withHeadlinePart2("Second headline of ad")
.withDescription("Ad description")
.withPath1("path1")
.withPath2("path2")
.withFinalUrl("http://www.example.com")
.build();
var ad = adOperation.getResult();
Methods:
expandedTextAdBuilder()
Returns a new expanded text ad builder associated with the ad group.
Return values:
imageAdBuilder()
Returns a new image ad builder associated with the ad group.
Return values:
responsiveDisplayAdBuilder()
Returns a new responsive Display ad builder associated with the ad group.
Return values:
responsiveSearchAdBuilder()
Returns a new responsive Search ad builder associated with the ad group.
Return values:
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-12-18 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-12-18 UTC."],[[["AdGroup.newAd() initiates the creation of a new ad within a specified ad group."],["You can create various ad types like expanded text ads, image ads, responsive display ads, and responsive search ads using their respective builders."],["Each builder provides methods to set specific elements of the ad, such as headlines, descriptions, paths, and final URLs."],["After building the ad, `getResult()` can be used to retrieve the created ad object."]]],[]]