Builder for a product ad under construction.
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:
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:
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: