AI-generated Key Takeaways
-
The
ProductAdBuilder
helps create new product ads within a Shopping ad group. -
Calling
build()
on theProductAdBuilder
is enough to create the product ad, althoughgetResult()
is needed for further operations like attaching labels. -
You can optionally set a mobile device preference for the new product ad using
withMobilePreferred()
. -
The
withMobilePreferred()
method takes a boolean argument indicating whether the ad should be preferred on mobile devices or not.
Typical usage:
var adOperation = shoppingAdGroup.newAdBuilder().build(); var ad = adOperation.getResult();
Note that it is only necessary to call ProductAdOperation.getResult()
if you need to access the actual product ad for further processing (for
instance, one can attach a label to the newly created product ad), otherwise,
calling ProductAdBuilder.build() on
the ProductAdBuilder
is sufficient to ensure that the product ad
is created.
Methods:
Member | Type | Description |
---|---|---|
build() | AdsApp.ProductAdOperation |
Creates a ProductAd. |
withMobilePreferred(isMobilePreferred) | AdsApp.ProductAdBuilder |
Sets the new product ad's device preference to mobile or clears it. |
build()
Creates a ProductAd. Returns a
ProductAdOperation
that can be used to get the new product ad
(or access any associated errors if creation failed). Return values:
Type | Description |
---|---|
AdsApp.ProductAdOperation |
The associated product ad operation. |
withMobilePreferred(isMobilePreferred)
Sets the new product ad's device preference to mobile or clears it. This
field is optional and defaults to false
. Arguments:
Name | Type | Description |
---|---|---|
isMobilePreferred | boolean |
Whether or not this product ad should be mobile
preferred. If true is passed in, device preference will be
set to mobile. If false is passed in, device preference
will be set to none. |
Return values:
Type | Description |
---|---|
AdsApp.ProductAdBuilder |
Product ad builder with the specified mobile preference. |