
Advertisement
Typical usage:
var adOperation = shoppingAdGroup.newAdBuilder().build(); var ad = adOperation.getResult();

Advertisement
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 | 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. |